15 lines
242 B
TOML
15 lines
242 B
TOML
# INVALID TOML DOC
|
|
[[fruits]]
|
|
name = "apple"
|
|
|
|
[[fruits.varieties]]
|
|
name = "red delicious"
|
|
|
|
[fruits.physical]
|
|
color = "red"
|
|
shape = "round"
|
|
|
|
# INVALID: This array of tables conflicts with the previous table
|
|
[[fruits.physical]]
|
|
color = "green"
|