12 lines
199 B
TOML
12 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"
|
||
|
|