From e40dfc28eb8ff02b20c18716c08b3a74fb6e4e8f Mon Sep 17 00:00:00 2001 From: estshorter <1430311+estshorter@users.noreply.github.com> Date: Sun, 10 Oct 2021 14:07:34 +0900 Subject: [PATCH] fix a compile error in a code example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99e6bbb..dc33b7e 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ int main() std::vector nums = toml::find>(data, "nums"); // access with STL-like manner - if(not data.contains("foo")) + if(!data.contains("foo")) { data["foo"] = "bar"; }