diff options
author | Jarrett Helton <jaydhelton@gmail.com> | 2020-08-03 13:26:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-03 13:26:02 -0400 |
commit | d615ebefe2e306f2877afb40dc603f71263407d6 (patch) | |
tree | 669d1b325ebc534de3adba10e839375cc679a8f9 /std/encoding/testdata | |
parent | e9d713c007afd31e22c9edf2b256197ed12336f2 (diff) |
fix(std/toml): parser error with inline comments (#6942)
Diffstat (limited to 'std/encoding/testdata')
-rw-r--r-- | std/encoding/testdata/boolean.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/std/encoding/testdata/boolean.toml b/std/encoding/testdata/boolean.toml index 242d29c96..e3e287981 100644 --- a/std/encoding/testdata/boolean.toml +++ b/std/encoding/testdata/boolean.toml @@ -1,3 +1,4 @@ [boolean] # i hate comments bool1 = true -bool2 = false
\ No newline at end of file +bool2 = false +bool3 = true # I love comments
\ No newline at end of file |