aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/bun-flavored-toml.md12
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 `;`