Merge pull request #336 from gps/patch-1

Fix minor typo
This commit is contained in:
Tim 2018-06-25 11:10:04 +01:00 committed by GitHub
commit b55433ded2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ return req.withConnection(to: .psql) { conn in
As the names imply, `withPooledConnection(to:)` utilizes a connection pool. `withConnection(to:)` does not. Connection pooling is a great way to ensure your application does not exceed the limits of your database, even under peak load.
### Simply Query
### Simple Query
Use `.simpleQuery(_:)` to perform a query on your PostgreSQL database that does not bind any parameters. Some queries you send to PostgreSQL may actually require that you use the `simpleQuery(_:)` method instead of the parameterized method.