Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sirthias committed Oct 21, 2024
1 parent 458be78 commit 12655c2
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions core/src/main/scala/io/bullet/borer/Input.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,7 @@

package io.bullet.borer

import io.bullet.borer.input.{
FromByteArrayInput,
FromByteBufferInput,
FromFileInput,
FromInputStreamInput,
FromIteratorInput
}
import io.bullet.borer.input.*

/**
* Mutable abstraction wrapping some source of bytes to serve as parser input.
Expand All @@ -36,7 +30,7 @@ trait Input[Bytes]:
* So any input will never have to cache more that the last 255 bytes from the head of the input.
*
* Also: Decoding CBOR never needs unreading, so if your use case doesn't have to support JSON
* then it's file to simply "implement" this method with `???`.
* then it's fine to simply "implement" this method with `???`.
*/
def unread(numberOfBytes: Int): this.type

Expand Down

0 comments on commit 12655c2

Please sign in to comment.