From 51b22f2fef3110676cc55b8f386164c669dbad7b Mon Sep 17 00:00:00 2001 From: Martin Tournoij Date: Sat, 12 Feb 2022 16:58:34 +0100 Subject: [PATCH] Fix README Fixes #342 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc13f866..a999c356 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ And then decoded with: ```go var conf Config -err := toml.Decode(tomlData, &conf) +_, err := toml.Decode(tomlData, &conf) // handle error ```