summary refs log tree commit diff stats
path: root/lib/impure
diff options
context:
space:
mode:
authorJamesP <jlp765@gmail.com>2015-09-06 22:40:15 +1000
committerJamesP <jlp765@gmail.com>2015-09-06 22:40:15 +1000
commit9aa992060292d8d68276a2173c8b7d90eb4e4159 (patch)
tree9cd488670c584c0fa67602be277ad80910c13082 /lib/impure
parent5ae33434f84602c02b4a6ad52ffab140208eabe5 (diff)
downloadNim-9aa992060292d8d68276a2173c8b7d90eb4e4159.tar.gz
instantRows doco added "the" to improve readability
Diffstat (limited to 'lib/impure')
-rw-r--r--lib/impure/db_sqlite.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/impure/db_sqlite.nim b/lib/impure/db_sqlite.nim
index 53d7570e4..fe605fbfd 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