From 72953c74728888c3172b39f61155cefb9f39592b Mon Sep 17 00:00:00 2001 From: L2ncE Date: Wed, 15 Jun 2022 16:59:08 +0800 Subject: [PATCH] Fix a syntax error in a code comment --- gjson_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gjson_test.go b/gjson_test.go index 9efe7c8..9353969 100644 --- a/gjson_test.go +++ b/gjson_test.go @@ -1320,7 +1320,7 @@ func TestNumFloatString(t *testing.T) { } func TestDuplicateKeys(t *testing.T) { - // this is vaild json according to the JSON spec + // this is valid json according to the JSON spec var json = `{"name": "Alex","name": "Peter"}` if Parse(json).Get("name").String() != Parse(json).Map()["name"].String() {