Update api/kv/kv.go

Co-authored-by: Katrina Verey <kn.verey@gmail.com>
This commit is contained in:
Cailyn
2023-01-05 14:39:02 -05:00
committed by GitHub
parent b7746d09e4
commit 6c79645fb0

View File

@@ -161,7 +161,7 @@ func (kvl *loader) keyValuesFromLine(line []byte, currentLine int) (types.Pair,
if len(data) == 2 {
kv.Value = data[1]
} else {
// If there is value (no `=` in the line), we set value to an empty string
// If there is no value (no `=` in the line), we set the value to an empty string
kv.Value = ""
}
kv.Key = key