Fixed typo in config guide.

This commit is contained in:
Jon Cox 2017-02-12 21:10:42 +00:00 committed by GitHub
parent 28ca0cb04f
commit 1b014a1885
1 changed files with 1 additions and 1 deletions

View File

@ -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