Skip to content

Commit b6955ec

Browse files
authored
Merge pull request #3839 from jtbandes/se-0133-3
[stdlib] Update doc comments for SE-0133
2 parents e4d8408 + a0bf9b8 commit b6955ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stdlib/public/core/Join.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>

stdlib/public/core/SequenceAlgorithms.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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}] {

0 commit comments

Comments
 (0)