From a82b9cbda320be219f426705494a357a45bfa2b2 Mon Sep 17 00:00:00 2001 From: JamesP Date: Tue, 13 Oct 2015 07:34:32 +1000 Subject: [PATCH] fix doco by removing extra ` chars, change a word and line up multi-line text --- lib/impure/db_postgres.nim | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/impure/db_postgres.nim b/lib/impure/db_postgres.nim index aee20e0960..26c131d3e1 100644 --- a/lib/impure/db_postgres.nim +++ b/lib/impure/db_postgres.nim @@ -8,21 +8,21 @@ # ## A higher level `PostgreSQL`:idx: database wrapper. This interface -## is implemented for other databases too. +## is implemented for other databases also. ## ## **Note**: There are two approaches to **parameter substitution** in this module ## 1. ``SqlQuery`` using ``?,?,?,...`` (same as the other db_xxxx modules) ## ## .. code-block:: Nim -## ``sql"INSERT INTO myTable (colA,colB,colC) VALUES (?,?,?)"`` +## sql"INSERT INTO myTable (colA,colB,colC) VALUES (?,?,?)" ## 2. ``SqlPrepared`` using ``$1,$2,$3,...`` (the Postgres way, using numbered parameters) ## ## .. code-block:: Nim -## ``prepare(theDb, "MyExampleInsert", -## sql"""INSERT INTO myTable -## (colA,colB,colC) -## VALUES ($1,$2,$3)""", -## 3)`` +## prepare(theDb, "MyExampleInsert", +## sql"""INSERT INTO myTable +## (colA,colB,colC) +## VALUES ($1,$2,$3)""", +## 3) ## ## Example: ##