We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5b9bc86 + 318837b commit b084e73Copy full SHA for b084e73
1 file changed
src/FSharpx.Core/Collections/CircularBuffer.fs
@@ -74,7 +74,7 @@ type CircularBuffer<'T> (bufferSize: int) =
74
let rec loop() = seq {
75
if length > 0 then
76
yield this.Dequeue(1).[0]
77
- yield! loop() }
+ yield! loop() }
78
loop().GetEnumerator()
79
80
interface IEnumerable<'T> with
0 commit comments