Skip to content

Commit 7aac571

Browse files
author
Chris Adamson
committed
Correct indentation.
1 parent 12d5d8e commit 7aac571

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

stdlib/public/Concurrency/AsyncSequence.swift

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,15 @@ import Swift
7474
@available(SwiftStdlib 5.5, *)
7575
@rethrows
7676
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.
7878
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.
8080
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.
8686
__consuming func makeAsyncIterator() -> AsyncIterator
8787
}
8888

0 commit comments

Comments
 (0)