From 4239e12354a8144edb08cd1c9dd1806457221d26 Mon Sep 17 00:00:00 2001 From: Pires Date: Sun, 17 Jan 2021 10:52:16 +0000 Subject: [PATCH] v1: fix misleading typo Signed-off-by: Pires --- v1.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v1.go b/v1.go index bb6b77a..09d5847 100644 --- a/v1.go +++ b/v1.go @@ -22,7 +22,7 @@ func initVersion1() *Header { } func parseVersion1(reader *bufio.Reader) (*Header, error) { - // Read until LR shows up, otherwise fail. + // Read until LF shows up, otherwise fail. // At this point, can't be sure CR precedes LF which will be validated next. line, err := reader.ReadString('\n') if err != nil {