From 6c6a7e34e90f886fcaf53f2bb1719d80231ec814 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Fri, 27 Sep 2019 06:02:54 +0100 Subject: [PATCH] Fix spellings (#12277) [backport] --- src/db_postgres.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db_postgres.nim b/src/db_postgres.nim index 4b156b79f7..fde4db1196 100644 --- a/src/db_postgres.nim +++ b/src/db_postgres.nim @@ -182,7 +182,7 @@ proc setRow(res: PPGresult, r: var Row, line, cols: int32) = iterator fastRows*(db: DbConn, query: SqlQuery, args: varargs[string, `$`]): Row {.tags: [ReadDbEffect].} = ## executes the query and iterates over the result dataset. This is very - ## fast, but potenially dangerous: If the for-loop-body executes another + ## fast, but potentially dangerous: If the for-loop-body executes another ## query, the results can be undefined. For Postgres it is safe though. var res = setupQuery(db, query, args) var L = pqnfields(res)