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
Toml.decode!/2 parses the following as %{"a" => %{"b" => 1}}:
Toml.decode!/2
%{"a" => %{"b" => 1}}
a = {} b = 1
The expected is %{"a" => %{}, "b" => 1}.
%{"a" => %{}, "b" => 1}
This might be related to issue #37. tomerl and TOML libraries from other languages corroborate the expected value.
The text was updated successfully, but these errors were encountered:
I think I may have fixed this inadvertently with #41.
Sorry, something went wrong.
No branches or pull requests
Toml.decode!/2
parses the following as%{"a" => %{"b" => 1}}
:The expected is
%{"a" => %{}, "b" => 1}
.This might be related to issue #37. tomerl and TOML libraries from other languages corroborate the expected value.
The text was updated successfully, but these errors were encountered: