From 6f126824878f972826c16a243e8d15975522be32 Mon Sep 17 00:00:00 2001 From: Gopal Sharma Date: Sat, 23 Jun 2018 18:12:27 +0530 Subject: [PATCH] Fix minor typo --- 3.0/docs/postgresql/core.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3.0/docs/postgresql/core.md b/3.0/docs/postgresql/core.md index a4e8c7e1..b6a28e97 100644 --- a/3.0/docs/postgresql/core.md +++ b/3.0/docs/postgresql/core.md @@ -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.