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 {
168
168
/// sequence's elements.
169
169
/// - Returns: The joined sequence of elements.
170
170
///
171
- /// - SeeAlso: `flatten ()`
171
+ /// - SeeAlso: `joined ()`
172
172
public func joined< Separator : Sequence > (
173
173
separator: Separator
174
174
) -> JoinedSequence < Self >
Original file line number Diff line number Diff line change @@ -623,7 +623,7 @@ extension Sequence {
623
623
///
624
624
/// - Complexity: O(*m* + *n*), where *m* is the length of this sequence
625
625
/// and *n* is the length of the result.
626
- /// - SeeAlso: `flatten ()`, `map(_:)`
626
+ /// - SeeAlso: `joined ()`, `map(_:)`
627
627
public func flatMap< SegmentOfResult : Sequence > (
628
628
_ transform: @noescape ( ${ GElement} ) throws -> SegmentOfResult
629
629
) rethrows -> [ SegmentOfResult . ${ GElement} ] {
You can’t perform that action at this time.
0 commit comments