pudo / dataset

Easy-to-use data handling for SQL data stores with support for implicit table creation, bulk loading, and transactions.
https://dataset.readthedocs.org/
MIT License
4.76k stars 297 forks source link

docs: fix typo for `Database.query()` #397

Closed xqm32 closed 2 years ago

xqm32 commented 2 years ago

removed redundant `.

before:

(i.e. SELECT * FROM tbl WHERE a = ?`)

after:

(i.e. SELECT * FROM tbl WHERE a = ?)

pudo commented 2 years ago

Thanks!