From 9aa992060292d8d68276a2173c8b7d90eb4e4159 Mon Sep 17 00:00:00 2001 From: JamesP Date: Sun, 6 Sep 2015 22:40:15 +1000 Subject: [PATCH] instantRows doco added "the" to improve readability --- lib/impure/db_sqlite.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/impure/db_sqlite.nim b/lib/impure/db_sqlite.nim index 53d7570e47..fe605fbfd9 100644 --- a/lib/impure/db_sqlite.nim +++ b/lib/impure/db_sqlite.nim @@ -149,7 +149,7 @@ iterator instantRows*(db: DbConn, query: SqlQuery, args: varargs[string, `$`]): InstantRow {.tags: [FReadDb].} = ## same as fastRows but returns a handle that can be used to get column text - ## on demand using []. Returned handle is valid only within interator body. + ## on demand using []. Returned handle is valid only within the interator body. var stmt = setupQuery(db, query, args) while step(stmt) == SQLITE_ROW: yield stmt