Skip to content

Commit 92c8cda

Browse files
[stdlib] Unabbreviate local variable names
1 parent 1cc2fdd commit 92c8cda

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)