From 30aed77d0419916b724205b519fe54a47be6284b Mon Sep 17 00:00:00 2001 From: onionhammer Date: Sat, 16 May 2015 12:37:07 -0500 Subject: [PATCH] Fixed indentation (2 spaces) part 2 --- lib/pure/json.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/json.nim b/lib/pure/json.nim index afb5fc1b1e..7ab4d9ad97 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()