summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorRyan Leckey <leckey.ryan@gmail.com>2017-01-24 02:18:34 -0800
committerGitHub <noreply@github.com>2017-01-24 02:18:34 -0800
commit1a0b28692389b849905d6badbe2006bd20343277 (patch)
tree9882c91d7cbb889ea8b295aa83df8bcfcfc763fa /README.md
parent1316558c8d26befdefdc532bbfa39bc3ebeed2af (diff)
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 304b8fc..aeb5b31 100644
--- a/README.md
+++ b/README.md
@@ -58,5 +58,5 @@ assert_eq!(config::get_bool("debug"), Some(false));
// Set an explicit override of a key
confing::set("debug", true);
-assert_eq!(config::get_bool("debug"), true);
+assert_eq!(config::get_bool("debug"), Some(true));
```