diff options
author | onionhammer <erik.m.oleary@gmail.com> | 2015-05-16 12:37:07 -0500 |
---|---|---|
committer | onionhammer <erik.m.oleary@gmail.com> | 2015-05-16 12:37:07 -0500 |
commit | 30aed77d0419916b724205b519fe54a47be6284b (patch) | |
tree | da83a7f27d9cfdc844ce0e95fee0a9c3a43270dc | |
parent | 11457bc63b53d1ba7215a19fb8663ec215a2f151 (diff) | |
download | Nim-30aed77d0419916b724205b519fe54a47be6284b.tar.gz |
Fixed indentation (2 spaces) part 2
-rw-r--r-- | lib/pure/json.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/json.nim b/lib/pure/json.nim index afb5fc1b1..7ab4d9ad9 100644 --- a/lib/pure/json.nim +++ b/lib/pure/json.nim @@ -971,7 +971,7 @@ proc toUgly*(result: var string, node: JsonNode) = result.add key.escapeJson() result.add "\":" result.toUgly value - result.add "}" + result.add "}" of JString: result.add "\"" result.add node.str.escapeJson() |