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