diff options
Diffstat (limited to 'tests/data/toml-lang-compliance/valid/table/spec-extend-dotted-object-1.toml')
-rw-r--r-- | tests/data/toml-lang-compliance/valid/table/spec-extend-dotted-object-1.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/data/toml-lang-compliance/valid/table/spec-extend-dotted-object-1.toml b/tests/data/toml-lang-compliance/valid/table/spec-extend-dotted-object-1.toml new file mode 100644 index 0000000..b4d1b37 --- /dev/null +++ b/tests/data/toml-lang-compliance/valid/table/spec-extend-dotted-object-1.toml @@ -0,0 +1,5 @@ +# This makes the key "fruit" into a table. +fruit.apple.smooth = true + +# So then you can add to the table "fruit" like so: +fruit.orange = 2 |