summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAnthony Anaedu <tony.anaedu@gmail.com>2019-04-23 12:05:48 -0700
committerGitHub <noreply@github.com>2019-04-23 12:05:48 -0700
commit220005db0c34107410080fd63e669a38375cc1b5 (patch)
tree96a97a6c21c49f2dcc5e8b4372a4bc0e113cddba
parent2dde374091366cb098e5d405daa9c4c4c469b6dc (diff)
update toml doc and fix typos
-rwxr-xr-xtoml.html.markdown14
1 files changed, 7 insertions, 7 deletions
diff --git a/toml.html.markdown b/toml.html.markdown
index 814e57e7..385a2437 100755
--- a/toml.html.markdown
+++ b/toml.html.markdown
@@ -32,7 +32,7 @@ boolean = true
dateTime = 1979-05-27T07:32:00-08:00
scientificNotation = 1e+12
"key can be quoted" = true # Both " and ' are fine
-"key may contains" = "letters, numbers, underscores, and dashes"
+"key may contain" = "letters, numbers, underscores, and dashes"
# A bare key must be non-empty, but an empty quoted key is allowed
"" = "blank" # VALID but discouraged
@@ -225,26 +225,26 @@ color = "gray"
# sub-table will belong to the nearest table element above it.
[[fruit]]
- name = "apple"
+ name = "apple" # I am a property in fruit table/map
- [fruit.Geometry]
+ [fruit.geometry]
shape = "round"
- note = "I am an fruit's property"
+ note = "I am a property in geometry table/map"
[[fruit.color]]
name = "red"
- note = "I am an array's item in apple"
+ note = "I am an array item in apple fruit's table/map"
[[fruit.color]]
name = "green"
- note = "I am in the same array than red"
+ note = "I am in the same array as red"
[[fruit]]
name = "banana"
[[fruit.color]]
name = "yellow"
- note = "I am an array's item too but banana's one"
+ note = "I am an array item in banana fruit's table/map"
```
In JSON land, this code will be: