From e3c191acecb18eed6eeaf129e8cb0a255fd3211b Mon Sep 17 00:00:00 2001 From: Gokcehan Date: Mon, 14 Feb 2022 00:29:15 +0300 Subject: [PATCH] cleanup --- misc.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc.go b/misc.go index 0f18f7a..7083cd7 100644 --- a/misc.go +++ b/misc.go @@ -137,8 +137,8 @@ func splitWord(s string) (word, rest string) { // This function reads whitespace separated string pairs at each line. Single // or double quotes can be used to escape whitespaces. Hash characters can be -// used to add a comment until the end of line. Indentation and trailing space -// is trimmed. Empty lines are skipped. +// used to add a comment until the end of line. Leading and trailing space is +// trimmed. Empty lines are skipped. func readPairs(r io.Reader) ([][]string, error) { var pairs [][]string s := bufio.NewScanner(r)