From 2d636030d24ae00f8bf2b2d27b0fa0281df83c09 Mon Sep 17 00:00:00 2001 From: Jon Cox Date: Sun, 12 Feb 2017 22:37:54 +0000 Subject: [PATCH] Fluent, Model - Corrections. --- fluent/model.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fluent/model.md b/fluent/model.md index ecb45a5d..cb9028b7 100644 --- a/fluent/model.md +++ b/fluent/model.md @@ -41,7 +41,7 @@ The compiler will inform you that some methods need to be implemented to conform ### ID -The first required property is an identifier. This property will contain the identifier when the model is fetched from the database. If it is nil, it will be set when the model is saved. +The first required property is an identifier. This property will contain the identifier when the model is fetched from the database. If it is `nil`, it will be set when the model is saved. ```swift final class User: Model { @@ -68,7 +68,7 @@ The keys `id` and `name` are what we expect the columns or fields in the databas ### Node Representable -Now that we have covered initializing the model, we need to show it how to save back into the database. Model uses `NodeRepresentable` to achieve this. +Now that we have covered initializing the model, we need to show how to save it back into the database. Model uses `NodeRepresentable` to achieve this. ```swift final class User: Model {