We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
BufferedBytes.md
1 parent a973b06 commit 6e9a575Copy full SHA for 6e9a575
Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/BufferedBytes.md
@@ -17,7 +17,7 @@ struct AsyncBytes: AsyncSequence {
17
}
18
19
public func makeAsyncIterator() -> AsyncBufferedByteIterator {
20
- return BufferedAsyncByteIterator(capacity: 16384) { buffer in
+ return AsyncBufferedByteIterator(capacity: 16384) { buffer in
21
// This runs once every 16384 invocations of next()
22
return try await handle.read(into: buffer)
23
0 commit comments