We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Loading produces an error:
loading error: (1, 8): unexpected token type in inline table: keys cannot contain } character
To Reproduce
_, err := toml.Load("key = {}") if err != nil { fmt.Println("loading error:", err) }
Expected behavior There should be no error according to the TOML specification:
Within the braces, zero or more comma separated key/value pairs may appear.
Versions
Additional context None.
The text was updated successfully, but these errors were encountered:
Fix inline table loading errors (#381)
f1ba638
Fixes #379 #380
Successfully merging a pull request may close this issue.
Describe the bug
Loading produces an error:
To Reproduce
Expected behavior
There should be no error according to the TOML specification:
Versions
Additional context
None.
The text was updated successfully, but these errors were encountered: