diff options
author | Marco Scannadinari <m@scannadinari.co.uk> | 2014-06-11 09:55:56 +0100 |
---|---|---|
committer | Marco Scannadinari <m@scannadinari.co.uk> | 2014-06-11 09:55:56 +0100 |
commit | a5f41dd164ec69da6a748a50fa6c9af1b0ba6db6 (patch) | |
tree | ebb432bccea239f166ab6a8078187a11add991c5 /json.html.markdown | |
parent | 8348e27660026f70f57ca95dbd4b175adada0410 (diff) |
Fix missing commas and closing braces
Diffstat (limited to 'json.html.markdown')
-rw-r--r-- | json.html.markdown | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/json.html.markdown b/json.html.markdown index 28906116..6891e04e 100644 --- a/json.html.markdown +++ b/json.html.markdown @@ -17,7 +17,7 @@ going to be 100% valid JSON. Luckily, it kind of speaks for itself. { "key": "value", - "keys": "must always be enclosed in quotes (' or \")" + "keys": "must always be enclosed in quotes (' or \")", "numbers": 0, "strings": "Hellø, wørld. All unicode is allowed, along with \"escaping\".", "has bools?": true, @@ -51,6 +51,7 @@ going to be 100% valid JSON. Luckily, it kind of speaks for itself. "comment": "check this out!" , "comma position": "doesn't matter - as long as its before the value, then its valid" , "see for rationale": "https://gist.github.com/isaacs/357981" + }, "that was short": "And, you're done. You know know everything JSON has to offer." } |