Update bun-flavored-toml.md

This commit is contained in:
Jarred Sumner
2022-01-29 23:52:30 -08:00
parent 4a1c195b24
commit fb2c7e5f38

View File

@@ -4,17 +4,7 @@
Bun implements a TOML parser with a few tweaks designed for better interopability with INI files and with JavaScript.
### `:` == `=`
Like `=`, `:` also assigns values to properties.
```toml
# In Bun-flavored TOML, these are semantically identical
foo = '12345'
foo : '12345'
```
### ';` == `#`
### ; and # are comments
In Bun-flavored TOML, comments start with `#` or `;`