summary refs log tree commit diff stats
path: root/lib/impure
diff options
context:
space:
mode:
authorAndrey Makarov <ph.makarov@gmail.com>2021-03-12 10:33:21 +0300
committerGitHub <noreply@github.com>2021-03-12 08:33:21 +0100
commitd97bf4f1c80ef41789ecfc3430e04293d2b20043 (patch)
treed72e80c79d4fcd1757107cad251a2ed32ee2c327 /lib/impure
parent97825805e047ae02003dfd2ed4c0bb3d0d9dc29a (diff)
downloadNim-d97bf4f1c80ef41789ecfc3430e04293d2b20043.tar.gz
fix RST parsing when no indent after enum.item (fix #17249) (#17257)
Diffstat (limited to 'lib/impure')
-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 6ca81db9e..832407960 100644
--- a/lib/impure/db_sqlite.nim
+++ b/lib/impure/db_sqlite.nim
@@ -154,7 +154,7 @@
 ## The reasoning is as follows:
 ## 1. it's close to what many DBs offer natively (char**)
 ## 2. it hides the number of types that the DB supports
-## (int? int64? decimal up to 10 places? geo coords?)
+##    (int? int64? decimal up to 10 places? geo coords?)
 ## 3. it's convenient when all you do is to forward the data to somewhere else (echo, log, put the data into a new query)
 ##
 ## See also