File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
stdlib/public/Concurrency Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -74,15 +74,15 @@ import Swift
74
74
@available ( SwiftStdlib 5 . 5 , * )
75
75
@rethrows
76
76
public protocol AsyncSequence {
77
- /// The type of asynchronous iterator produced by this asynchronous sequence.
77
+ /// The type of asynchronous iterator produced by this asynchronous sequence.
78
78
associatedtype AsyncIterator : AsyncIteratorProtocol where AsyncIterator. Element == Element
79
- /// The type of element produced by this asynchronous sequence.
79
+ /// The type of element produced by this asynchronous sequence.
80
80
associatedtype Element
81
- /// Creates the asynchronous iterator that produces elements of this
82
- /// asynchronous sequence.
83
- ///
84
- /// - Returns: An instance of the `AsyncIterator` type used to produce
85
- /// elements of the asynchronous sequence.
81
+ /// Creates the asynchronous iterator that produces elements of this
82
+ /// asynchronous sequence.
83
+ ///
84
+ /// - Returns: An instance of the `AsyncIterator` type used to produce
85
+ /// elements of the asynchronous sequence.
86
86
__consuming func makeAsyncIterator( ) -> AsyncIterator
87
87
}
88
88
You can’t perform that action at this time.
0 commit comments