File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 22
22
/// methods that return lazy wrappers that are themselves
23
23
/// `LazyCollectionProtocol`s.
24
24
///
25
- /// - See Also : `LazySequenceProtocol`, `LazyCollection`
25
+ /// - SeeAlso : `LazySequenceProtocol`, `LazyCollection`
26
26
public protocol LazyCollectionProtocol
27
27
: Collection , LazySequenceProtocol {
28
28
/// A `Collection` that can contain the same elements as this one,
@@ -219,7 +219,7 @@ extension ${TraversalCollection} {
219
219
/// intermediate operations from allocating storage, or when you only
220
220
/// need a part of the final collection to avoid unnecessary computation.
221
221
///
222
- /// - See Also : `LazySequenceProtocol`, `LazyCollectionProtocol`.
222
+ /// - SeeAlso : `LazySequenceProtocol`, `LazyCollectionProtocol`.
223
223
public var lazy: ${ Self} < Self> {
224
224
return ${ Self} ( _base: self )
225
225
}
You can’t perform that action at this time.
0 commit comments