toml icon indicating copy to clipboard operation
toml copied to clipboard

`toml_edit` error regression compared to `toml`: missing key

Open epage opened this issue 2 years ago • 0 comments

-        "expected a table key, found an equals at line 1 column 1"
+        "\
+TOML parse error at line 1, column 1
+  |
+1 | =3
+  | ^
+invalid key
+"
-        "expected a table key, found a right bracket at line 1 column 2"
+        "\
+TOML parse error at line 1, column 2
+  |
+1 | []
+  |  ^
+invalid key
+"

epage avatar Jan 18 '23 03:01 epage