summary refs log tree commit diff stats
diff options
context:
space:
mode:
authoronionhammer <erik.m.oleary@gmail.com>2015-05-16 12:37:07 -0500
committeronionhammer <erik.m.oleary@gmail.com>2015-05-16 12:37:07 -0500
commit30aed77d0419916b724205b519fe54a47be6284b (patch)
treeda83a7f27d9cfdc844ce0e95fee0a9c3a43270dc
parent11457bc63b53d1ba7215a19fb8663ec215a2f151 (diff)
downloadNim-30aed77d0419916b724205b519fe54a47be6284b.tar.gz
Fixed indentation (2 spaces) part 2
-rw-r--r--lib/pure/json.nim2
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()