From 6c79645fb04e1ef36d212a6823bc6edf161c1aac Mon Sep 17 00:00:00 2001 From: Cailyn Date: Thu, 5 Jan 2023 14:39:02 -0500 Subject: [PATCH] Update api/kv/kv.go Co-authored-by: Katrina Verey --- api/kv/kv.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/kv/kv.go b/api/kv/kv.go index ddfe68069..52f17bb20 100644 --- a/api/kv/kv.go +++ b/api/kv/kv.go @@ -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