summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJamesP <jlp765@gmail.com>2015-09-06 23:02:28 +1000
committerJamesP <jlp765@gmail.com>2015-09-06 23:02:28 +1000
commit0edb04288befcc656ef9e28da7f1b525fe8a5ea3 (patch)
treec84faee00742213d88495df46e219d8a7e7160c9
parent9aa992060292d8d68276a2173c8b7d90eb4e4159 (diff)
downloadNim-0edb04288befcc656ef9e28da7f1b525fe8a5ea3.tar.gz
Clean up a line ending
-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 fe605fbfd..8366fdadc 100644
--- a/lib/impure/db_sqlite.nim
+++ b/lib/impure/db_sqlite.nim
@@ -130,7 +130,7 @@ proc setRow(stmt: Pstmt, r: var Row, cols: cint) =
 
 iterator fastRows*(db: DbConn, query: SqlQuery,
                    args: varargs[string, `$`]): Row  {.tags: [FReadDb].} =
-  ## Executes the query and iterates over the result dataset. 
+  ## Executes the query and iterates over the result dataset.
   ##
   ## This is very fast, but potentially dangerous.  Use this iterator only
   ## if you require **ALL** the rows.