Skip to content

Commit 7a11b2d

Browse files
authored
Merge pull request #4888 from amartini51/seealso
2 parents 46b860b + 99dce85 commit 7a11b2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/public/core/LazyCollection.swift.gyb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/// methods that return lazy wrappers that are themselves
2323
/// `LazyCollectionProtocol`s.
2424
///
25-
/// - See Also: `LazySequenceProtocol`, `LazyCollection`
25+
/// - SeeAlso: `LazySequenceProtocol`, `LazyCollection`
2626
public protocol LazyCollectionProtocol
2727
: Collection, LazySequenceProtocol {
2828
/// A `Collection` that can contain the same elements as this one,
@@ -219,7 +219,7 @@ extension ${TraversalCollection} {
219219
/// intermediate operations from allocating storage, or when you only
220220
/// need a part of the final collection to avoid unnecessary computation.
221221
///
222-
/// - See Also: `LazySequenceProtocol`, `LazyCollectionProtocol`.
222+
/// - SeeAlso: `LazySequenceProtocol`, `LazyCollectionProtocol`.
223223
public var lazy: ${Self}<Self> {
224224
return ${Self}(_base: self)
225225
}

0 commit comments

Comments
 (0)