summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorめぐみ発動機 (isVowel / GreenWing) <60494954+pancakevirus@users.noreply.github.com>2020-03-11 16:26:10 +0900
committerGitHub <noreply@github.com>2020-03-11 08:26:10 +0100
commit8e3a349561fb0af7f5bc77a4d436abb3ced75d9e (patch)
treee4848787525d8e9a000e1ef8eae4f8bc5a132dac /lib
parent2f557652d41dea81e43d36c3e89258ece620609e (diff)
downloadNim-8e3a349561fb0af7f5bc77a4d436abb3ced75d9e.tar.gz
fixed to jsonArrayEnd comment. (#13624)
typo: start → end
Diffstat (limited to 'lib')
-rw-r--r--lib/pure/parsejson.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/parsejson.nim b/lib/pure/parsejson.nim
index 0d7d7093e..18e6037f3 100644
--- a/lib/pure/parsejson.nim
+++ b/lib/pure/parsejson.nim
@@ -27,7 +27,7 @@ type
     jsonObjectStart,    ## start of an object: the ``{`` token
     jsonObjectEnd,      ## end of an object: the ``}`` token
     jsonArrayStart,     ## start of an array: the ``[`` token
-    jsonArrayEnd        ## start of an array: the ``]`` token
+    jsonArrayEnd        ## end of an array: the ``]`` token
 
   TokKind* = enum # must be synchronized with TJsonEventKind!
     tkError,