diff options
author | 2022-01-29 23:52:30 -0800 | |
---|---|---|
committer | 2022-01-29 23:52:30 -0800 | |
commit | fb2c7e5f38e31e9402810b34ab8dab3d109db696 (patch) | |
tree | e142250a98faf15334bcf068c7e148779d4cfcb7 | |
parent | 4a1c195b24108f4f0d8cfc314dd43a4b87281ed6 (diff) | |
download | bun-fb2c7e5f38e31e9402810b34ab8dab3d109db696.tar.gz bun-fb2c7e5f38e31e9402810b34ab8dab3d109db696.tar.zst bun-fb2c7e5f38e31e9402810b34ab8dab3d109db696.zip |
Update bun-flavored-toml.md
-rw-r--r-- | docs/bun-flavored-toml.md | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/docs/bun-flavored-toml.md b/docs/bun-flavored-toml.md index 5b0bce055..1a7587470 100644 --- a/docs/bun-flavored-toml.md +++ b/docs/bun-flavored-toml.md @@ -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 `;` |