Update models.md

This commit is contained in:
Tanner 2018-03-13 21:19:02 -04:00 committed by GitHub
parent 6fdb486b6d
commit 0ed3c04057
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
Models are the heart of Fluent. Unlike ORMs in other languages, Fluent doesn't return untyped arrays or dictionaries for queries. Instead, you query the database using models. This allows the Swift compiler to catch many errors that have burdened ORM users for ages.
!!! info
This guide provides an overview of the `Model` protocol and its associated methods and properties. If you are just getting started, check find the guide for your database at [Fluent → Getting Started](getting-started.md).
This guide provides an overview of the `Model` protocol and its associated methods and properties. If you are just getting started, check out the guide for your database at [Fluent → Getting Started](getting-started.md).
`Model` is a protocol in the `Fluent` module. It extends the `AnyModel` protocol which can be used for type-erasure.