diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-09-07 07:15:13 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-09-10 08:36:24 +0200 |
commit | 58077450cc4e874f8d0ee176acee4de528248227 (patch) | |
tree | f3d586eaf1699a68b9fafce2ad309c5a67f8780a | |
parent | 5d9c1544bf8cb66e479e9816987f2241645b3568 (diff) | |
download | Nim-58077450cc4e874f8d0ee176acee4de528248227.tar.gz |
parsejson: typo
-rw-r--r-- | lib/pure/parsejson.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/parsejson.nim b/lib/pure/parsejson.nim index f86f3dfae..9893e434e 100644 --- a/lib/pure/parsejson.nim +++ b/lib/pure/parsejson.nim @@ -105,7 +105,7 @@ proc open*(my: var JsonParser, input: Stream, filename: string; rawStringLiterals = false) = ## initializes the parser with an input stream. `Filename` is only used ## for nice error messages. If `rawStringLiterals` is true, string literals - ## are kepts with their surrounding quotes and escape sequences in them are + ## are kept with their surrounding quotes and escape sequences in them are ## left untouched too. lexbase.open(my, input) my.filename = filename |