Typos in Getting Started

This commit is contained in:
Ben C 2022-07-24 19:16:45 -04:00
parent 19f4f57094
commit b28576dfd6
No known key found for this signature in database
GPG Key ID: 7F8F04504B670474

View File

@ -72,7 +72,7 @@ All JSON files start out with an `object`, or a set of key value mappings, for e
} }
``` ```
Those braces (`{}`) denote an object, and by doing `"name": "Jim"` we're saying that the name of this person is Jim Those braces (`{}`) denote an object, and by doing `"name": "Jim"` we're saying that the name of this person is Jim;
`"name"` is the key, and `"Jim"` is the value. `"name"` is the key, and `"Jim"` is the value.
Objects can have multiple keys as well, as long as you separate them by commas: Objects can have multiple keys as well, as long as you separate them by commas: