From d7c60e86b460b10aced436eae8816b45e284d49a Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 5 Sep 2015 21:15:01 +0100 Subject: [PATCH] Bold emphasis and fix typo. --- lib/impure/db_mysql.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/impure/db_mysql.nim b/lib/impure/db_mysql.nim index 9a03f97836..7f75112646 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``.