Merge pull request #194 from pdesantis/patch-1

Fix typos
This commit is contained in:
Tanner 2017-07-20 14:16:57 -04:00 committed by GitHub
commit 48a5508442
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ Fluent provides an easy, simple, and safe API for working with your persisted da
!!! note
Don't forget to add `import FluentProvider` (or your other database provider) to the top of your Swift files.
Fluent ships with SQLite by default. You can use SQLite to quickly scaffolding your application with the in-memory database it provides. This is enabled by default in Vapor's default template. To learn more about configuring your database, check out the available [drivers](#drivers).
Fluent ships with SQLite by default. You can use SQLite to quickly scaffold your application with the in-memory database it provides. This is enabled by default in Vapor's default template. To learn more about configuring your database, check out the available [drivers](#drivers).
## Creating a Model
@ -112,7 +112,7 @@ Here we are creating a simple table that will look like this:
### Add to Droplet
Now you can add your model to the config's prearations so the database is prepared when your application boots.
Now you can add your model to the config's preparations so the database is prepared when your application boots.
```swift
import Vapor