pelletier / go-toml

Go library for the TOML file format
https://github.com/pelletier/go-toml
Other
1.69k stars 206 forks source link

Decode: error on array table mismatched type #804

Closed pelletier closed 2 years ago

pelletier commented 2 years ago

Prevent the decoder from continuing if it encounters a type it cannot decode an array table into.

For example, the reported error is toml: cannot decode array table into a map[string]int.

Fixes #799