| author | |
| committer | |
| log | 6fe9c8f03626651b7cafe01ffedac17b33588b29 |
| tree | 20201a74eddbe3add0b41f111b26cb30c8e8a5f2 |
| parent | d9aa84de284f328d37bfd9feae68edf1865d023f |
it was tossing 2x1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/io/BufferedReader.zig+1-1| ... | ... | @@ -511,7 +511,7 @@ pub fn takeSentinel(br: *BufferedReader, comptime sentinel: u8) DelimiterError![ |
| 511 | 511 | } |
| 512 | 512 | |
| 513 | 513 | pub fn peekSentinel(br: *BufferedReader, comptime sentinel: u8) DelimiterError![:sentinel]u8 { |
| 514 | const result = try br.takeDelimiterInclusive(sentinel); | |
| 514 | const result = try br.peekDelimiterInclusive(sentinel); | |
| 515 | 515 | return result[0 .. result.len - 1 :sentinel]; |
| 516 | 516 | } |
| 517 | 517 |