Skip to content

Commit 0960696

Browse files
committed
Scalafmt
1 parent 83552ed commit 0960696

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/shared/src/main/scala/fs2/Chunk.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ object Chunk
977977
// The requested index is exactly equal to an accumulated length so the head of the next chunk is the value to return
978978
chunks(j + 1)(0)
979979
} else {
980-
// The requested index is not an exact match but located in the chunk after the returned insertion point
980+
// The requested index is not an exact match but located in the chunk after the returned insertion point
981981
val k = -j + 1
982982
val accLenBefore = if (k == 0) 0 else lengths(k - 1)
983983
chunks(k)(i - accLenBefore)

0 commit comments

Comments
 (0)