File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ extension Sequence where Iterator.Element : Sequence {
168168 /// sequence's elements.
169169 /// - Returns: The joined sequence of elements.
170170 ///
171- /// - SeeAlso: `flatten ()`
171+ /// - SeeAlso: `joined ()`
172172 public func joined< Separator : Sequence > (
173173 separator: Separator
174174 ) -> JoinedSequence < Self >
Original file line number Diff line number Diff line change @@ -623,7 +623,7 @@ extension Sequence {
623623 ///
624624 /// - Complexity: O(*m* + *n*), where *m* is the length of this sequence
625625 /// and *n* is the length of the result.
626- /// - SeeAlso: `flatten ()`, `map(_:)`
626+ /// - SeeAlso: `joined ()`, `map(_:)`
627627 public func flatMap< SegmentOfResult : Sequence > (
628628 _ transform: @noescape ( ${ GElement} ) throws -> SegmentOfResult
629629 ) rethrows -> [ SegmentOfResult . ${ GElement} ] {
You can’t perform that action at this time.
0 commit comments