Nit: move s outside the

This commit is contained in:
Jhonny Bill 2019-01-14 06:35:12 -04:00
parent c4509b5eaa
commit 5d7b56c613
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ have many functions that accept a request and return some sort of response.
#### Models
The `Models` folder is a great place to store your [`Content`](content.md) structs or
Fluent [`Models`](../fluent/models.md).
Fluent [`Model`s](../fluent/models.md).
#### boot.swift

View File

@ -5,7 +5,7 @@ Routing ([vapor/routing](https://github.com/vapor/routing)) is a small framework
!!! tip
If you use Vapor, most of Routing's APIs will be wrapped by more convenient methods. See [Vapor → Routing] for more information.
This guide will show you how to register a static route and a dynamic route and how to use [`Parameters`](https://api.vapor.codes/routing/latest/Routing/Protocols/Parameter.html).
This guide will show you how to register a static route and a dynamic route and how to use [`Parameter`s](https://api.vapor.codes/routing/latest/Routing/Protocols/Parameter.html).
## Register