Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stdlib/public/core/Reverse.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ extension MutableCollection where Self: BidirectionalCollection {
/// var characters: [Character] = ["C", "a", "f", "é"]
/// characters.reverse()
/// print(characters)
/// // Prints "["é", "f", "a", "C"]
/// // Prints "["é", "f", "a", "C"]"
///
/// - Complexity: O(*n*), where *n* is the number of elements in the
/// collection.
Expand Down
4 changes: 2 additions & 2 deletions stdlib/public/core/Zip.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/// print("\(word): \(number)")
/// }
/// // Prints "one: 1"
/// // Prints "two: 2
/// // Prints "two: 2"
/// // Prints "three: 3"
/// // Prints "four: 4"
///
Expand Down Expand Up @@ -64,7 +64,7 @@ public func zip<Sequence1, Sequence2>(
/// print("\(word): \(number)")
/// }
/// // Prints "one: 1"
/// // Prints "two: 2
/// // Prints "two: 2"
/// // Prints "three: 3"
/// // Prints "four: 4"
@frozen // generic-performance
Expand Down