Skip to content

Commit 68b3fe8

Browse files
committed
Merge pull request #461 from PatrickPijnappel/patch-1
[stdlib] Unabbreviate local variable names
2 parents 1cc2fdd + 92c8cda commit 68b3fe8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/public/core/Zip.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ public struct Zip2Generator<
4848
return nil
4949
}
5050

51-
guard let e0 = _baseStreams.0.next(), e1 = _baseStreams.1.next() else {
51+
guard let element0 = _baseStreams.0.next(), element1 = _baseStreams.1.next() else {
5252
_reachedEnd = true
5353
return nil
5454
}
5555

56-
return .Some((e0, e1))
56+
return .Some((element0, element1))
5757
}
5858

5959
internal var _baseStreams: (Generator1, Generator2)

0 commit comments

Comments
 (0)