mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Fix missing commas and closing braces
This commit is contained in:
parent
8348e27660
commit
a5f41dd164
@ -17,7 +17,7 @@ going to be 100% valid JSON. Luckily, it kind of speaks for itself.
|
|||||||
{
|
{
|
||||||
"key": "value",
|
"key": "value",
|
||||||
|
|
||||||
"keys": "must always be enclosed in quotes (' or \")"
|
"keys": "must always be enclosed in quotes (' or \")",
|
||||||
"numbers": 0,
|
"numbers": 0,
|
||||||
"strings": "Hellø, wørld. All unicode is allowed, along with \"escaping\".",
|
"strings": "Hellø, wørld. All unicode is allowed, along with \"escaping\".",
|
||||||
"has bools?": true,
|
"has bools?": true,
|
||||||
@ -51,6 +51,7 @@ going to be 100% valid JSON. Luckily, it kind of speaks for itself.
|
|||||||
"comment": "check this out!"
|
"comment": "check this out!"
|
||||||
, "comma position": "doesn't matter - as long as its before the value, then its valid"
|
, "comma position": "doesn't matter - as long as its before the value, then its valid"
|
||||||
, "see for rationale": "https://gist.github.com/isaacs/357981"
|
, "see for rationale": "https://gist.github.com/isaacs/357981"
|
||||||
|
},
|
||||||
|
|
||||||
"that was short": "And, you're done. You know know everything JSON has to offer."
|
"that was short": "And, you're done. You know know everything JSON has to offer."
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user