Skip to content

Commit 1626281

Browse files
Update Sources/AsyncAlgorithms/AsyncShareSequence.swift
Co-authored-by: Pyry Jahkola <[email protected]>
1 parent 1b6b715 commit 1626281

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/AsyncAlgorithms/AsyncShareSequence.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ where Base.Element: Sendable, Base: _SendableMetatype, Base.AsyncIterator: _Send
133133
// - `continuation`: The continuation waiting for the next element (nil if not waiting)
134134
// - `position`: The consumer's current position in the shared buffer
135135
struct State {
136-
var continuation: UnsafeContinuation<Result<Base.Element?, Error>, Never>?
136+
var continuation: UnsafeContinuation<Result<Base.Element?, Error>, Never>?
137137
var position = 0
138138

139139
// Creates a new state with the position adjusted by the given offset.

0 commit comments

Comments
 (0)