From 0ed3c04057eff52129f4c6a2afe46db2bde5d85e Mon Sep 17 00:00:00 2001 From: Tanner Date: Tue, 13 Mar 2018 21:19:02 -0400 Subject: [PATCH] Update models.md --- 3.0/docs/fluent/models.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3.0/docs/fluent/models.md b/3.0/docs/fluent/models.md index b8ac1530..f2c55ae5 100644 --- a/3.0/docs/fluent/models.md +++ b/3.0/docs/fluent/models.md @@ -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.