From 99b0abc49034bbab259fdafb7390678540c2018a Mon Sep 17 00:00:00 2001 From: Maurice Makaay Date: Wed, 24 Jul 2019 22:42:16 +0000 Subject: [PATCH] WIP on lowering the number of forks required. --- read/read.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/read/read.go b/read/read.go index cc35e9a..ab5132f 100644 --- a/read/read.go +++ b/read/read.go @@ -96,7 +96,7 @@ func makeBufioReader(input interface{}) *bufio.Reader { // This parserkit.reader.Reader is used internally by tokenize.API. type Buffer struct { bufio *bufio.Reader // used for ReadRune() - buffer []byte // input buffer, holding runes that were read from input + buffer []byte // input buffer, holding bytes that were read from input cap int // the full buffer capacity start int // the offset from where on to read buffered data in the buffer len int // the length of the buffered data