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
The following TOML input should be invalid:
[[foo]] a = true [foo] b = false
But toml-rb parses it and returns {"foo"=>[{"a"=>true, "b"=>false}]}.
{"foo"=>[{"a"=>true, "b"=>false}]}
The text was updated successfully, but these errors were encountered:
Thanks @rennsax for reporting this, I will take a look over the weekend!
Sorry, something went wrong.
Well, that was a long weekend 😅 -- I will get back to this next week which I'm on holidays. Sorry for the long wait
I was digging into this last week, it is taking me more than I expected. Im sorry
No branches or pull requests
The following TOML input should be invalid:
But toml-rb parses it and returns
{"foo"=>[{"a"=>true, "b"=>false}]}
.The text was updated successfully, but these errors were encountered: