diff options
Diffstat (limited to 'json.html.markdown')
-rw-r--r-- | json.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/json.html.markdown b/json.html.markdown index 9041eaa2..f57b82b8 100644 --- a/json.html.markdown +++ b/json.html.markdown @@ -10,14 +10,14 @@ As JSON is an extremely simple data-interchange format, this is most likely goin to be the simplest Learn X in Y Minutes ever. JSON in its purest form has no actual comments, but most parsers will accept -C-style (//, /\* \*/) comments. For the purposes of this, however, everything is +C-style (`//`, `/* */`) comments. For the purposes of this, however, everything is going to be 100% valid JSON. Luckily, it kind of speaks for itself. ```json { "key": "value", - "keys": "must always be enclosed in quotes (either double or single)", + "keys": "must always be enclosed in double quotes", "numbers": 0, "strings": "Hellø, wørld. All unicode is allowed, along with \"escaping\".", "has bools?": true, |