Merge pull request #397 from xqm32/fix-typo

docs: fix typo for `Database.query()`
This commit is contained in:
Friedrich Lindenberg
2022-06-03 08:54:53 +02:00
committed by GitHub
+1 -1
View File
@@ -306,7 +306,7 @@ class Database(object):
Further positional and keyword arguments will be used for parameter Further positional and keyword arguments will be used for parameter
binding. To include a positional argument in your query, use question binding. To include a positional argument in your query, use question
marks in the query (i.e. ``SELECT * FROM tbl WHERE a = ?```). For marks in the query (i.e. ``SELECT * FROM tbl WHERE a = ?``). For
keyword arguments, use a bind parameter (i.e. ``SELECT * FROM tbl keyword arguments, use a bind parameter (i.e. ``SELECT * FROM tbl
WHERE a = :foo``). WHERE a = :foo``).
:: ::