From b2d26fa9ca362e4fa9a6e6ea3b7074e4cde4ab16 Mon Sep 17 00:00:00 2001 From: Andrey Makarov Date: Fri, 12 Mar 2021 10:33:21 +0300 Subject: [PATCH] fix RST parsing when no indent after enum.item (fix #17249) (#17257) --- src/db_sqlite.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db_sqlite.nim b/src/db_sqlite.nim index 6ca81db9e9d2a..8324079602f18 100644 --- a/src/db_sqlite.nim +++ b/src/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