summary refs log tree commit diff stats
path: root/lib/impure
diff options
context:
space:
mode:
authorJamesP <jlp765@gmail.com>2015-09-05 11:48:47 +1000
committerJamesP <jlp765@gmail.com>2015-09-05 11:48:47 +1000
commitd02d1219b0c5157d6e56a09e9bf82cc03d73229b (patch)
tree8d42b4ed98555dc3afa4e8d841568161146a81f2 /lib/impure
parent5b11ce27c4aedea27a84142df3022028a5249494 (diff)
downloadNim-d02d1219b0c5157d6e56a09e9bf82cc03d73229b.tar.gz
instantRows doco updated with "the" to improve readability
Diffstat (limited to 'lib/impure')
-rw-r--r--lib/impure/db_mysql.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/impure/db_mysql.nim b/lib/impure/db_mysql.nim
index fc6df72cc..3d9274351 100644
--- a/lib/impure/db_mysql.nim
+++ b/lib/impure/db_mysql.nim
@@ -169,7 +169,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.
   rawExec(db, query, args)
   var sqlres = mysql.useResult(db)
   if sqlres != nil: