From 1b014a1885d129de64fd046b67dfdf2951417f9b Mon Sep 17 00:00:00 2001 From: Jon Cox Date: Sun, 12 Feb 2017 21:10:42 +0000 Subject: [PATCH] Fixed typo in config guide. --- guide/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/config.md b/guide/config.md index 1e86f8e2..3236ffd0 100644 --- a/guide/config.md +++ b/guide/config.md @@ -77,7 +77,7 @@ let name = drop.config["keys", "test-names", 0]?.string ?? "default" Or our mongo url: ```swift -let mongoUrl = drop.config["keys", "mongo", "url"].?string ?? "default" +let mongoUrl = drop.config["keys", "mongo", "url"]?.string ?? "default" ``` ## Advanced Configurations