summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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,