diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-09-05 21:15:01 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-09-05 21:15:01 +0100 |
commit | d7c60e86b460b10aced436eae8816b45e284d49a (patch) | |
tree | 6a0b61a3c2e6098884529c4c08c37b6bbace6cce /lib/impure | |
parent | 14a233dc75593697c4fb38f2f1b5b3bf89786f8a (diff) | |
download | Nim-d7c60e86b460b10aced436eae8816b45e284d49a.tar.gz |
Bold emphasis and fix typo.
Diffstat (limited to 'lib/impure')
-rw-r--r-- | lib/impure/db_mysql.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/impure/db_mysql.nim b/lib/impure/db_mysql.nim index 9a03f9783..7f7511264 100644 --- a/lib/impure/db_mysql.nim +++ b/lib/impure/db_mysql.nim @@ -142,8 +142,8 @@ iterator fastRows*(db: DbConn, query: SqlQuery, args: varargs[string, `$`]): Row {.tags: [FReadDB].} = ## executes the query and iterates over the result dataset. ## - ## This is very fast, but potenially dangerous. Use this iterator only - ## if you require ALL the rows. + ## This is very fast, but potentially dangerous. Use this iterator only + ## if you require **ALL** the rows. ## ## Breaking the fastRows() iterator during a loop will cause the next ## database query to raise an [EDb] exception ``Commands out of sync``. |