Skip to content

Commit b7329df

Browse files
author
Russ Bishop
committed
Cleanup comments for flatMap overloads
1 parent 408e8c7 commit b7329df

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

stdlib/public/core/FlatMap.swift

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ extension LazySequenceProtocol {
2626
}
2727

2828
/// Returns a `LazyMapSequence` containing the concatenated non-nil
29-
/// results of mapping transform over this `Sequence`. The elements of
30-
/// the result are computed lazily, each time they are read.
29+
/// results of mapping transform over this `Sequence`.
3130
///
3231
/// Use this method to receive only nonoptional values when your
3332
/// transformation produces an optional value.
@@ -64,8 +63,7 @@ extension LazyCollectionProtocol {
6463
}
6564

6665
/// Returns a `LazyMapCollection` containing the concatenated non-nil
67-
/// results of mapping transform over this collection. The elements of
68-
/// the result are computed lazily, each time they are read.
66+
/// results of mapping transform over this collection.
6967
///
7068
/// Use this method to receive only nonoptional values when your
7169
/// transformation produces an optional value.
@@ -109,8 +107,7 @@ extension LazyCollectionProtocol
109107
}
110108

111109
/// Returns a `LazyMapBidirectionalCollection` containing the concatenated non-nil
112-
/// results of mapping transform over this collection. The elements of
113-
/// the result are computed lazily, each time they are read.
110+
/// results of mapping transform over this collection.
114111
///
115112
/// Use this method to receive only nonoptional values when your
116113
/// transformation produces an optional value.

0 commit comments

Comments
 (0)