Daniel Ziltener
91ea498688
git-subtree-dir: tomlc99 git-subtree-mainline:f2ccebdd2d
git-subtree-split:5221b3d3d6
11 lines
199 B
TOML
11 lines
199 B
TOML
# INVALID TOML DOC
|
|
[[fruits]]
|
|
name = "apple"
|
|
|
|
[[fruits.varieties]]
|
|
name = "red delicious"
|
|
|
|
# INVALID: This table conflicts with the previous array of tables
|
|
[fruits.varieties]
|
|
name = "granny smith"
|
|
|