From e2bed684302835d16b9e332d57d5f0ca42f5384a Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Tue, 28 Nov 2023 08:10:46 -0800 Subject: [PATCH] initial commits --- readeol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readeol.go b/readeol.go index 902392f..f2529fc 100644 --- a/readeol.go +++ b/readeol.go @@ -16,7 +16,7 @@ import ( // next-line (NEL) (U+0085) // line-separator (LS) (U+2028) // -// If successful, ReadEOL return the end-of-line sequence and the number-of-bytes read. +// If successful, ReadEOL return the end-of-line sequence it found and the number-of-bytes read (to read in end-of-line sequence it found). func ReadEOL(runescanner io.RuneScanner) (endofline string, size int, err error) { if nil == runescanner { return "", 0, errNilRuneScanner