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
commit be81e8f000
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -306,7 +306,7 @@ class Database(object):
Further positional and keyword arguments will be used for parameter
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
WHERE a = :foo``).
::