Update burntSushi/toml

This commit is contained in:
Frank Denis 2022-04-05 14:05:53 +02:00
parent 5fca7ea49e
commit 3eac156789
30 changed files with 157 additions and 52 deletions

View file

@ -56,7 +56,7 @@ And then decoded with:
```go
var conf Config
err := toml.Decode(tomlData, &conf)
_, err := toml.Decode(tomlData, &conf)
// handle error
```