`Toml.decode!/2` parses the following as `%{"a" => %{"b" => 1}}`: ```toml a = {} b = 1 ``` The expected is `%{"a" => %{}, "b" => 1}`. This might be related to issue #37. [tomerl](https://github.com/filmor/tomerl) and TOML libraries from other languages corroborate the expected value.
Toml.decode!/2parses 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.