Skip to content
Prev Previous commit
Next Next commit
Address review: adjust wording
  • Loading branch information
Erlend E. Aasland committed Oct 31, 2021
commit 4d53130d02e35c6309b2e1eab645a621b7e2750e
4 changes: 2 additions & 2 deletions Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ This example uses the iterator form::

.. _sqlite3-placeholders:

SQL operations will usually need to use values from Python variables. It is not
adviced to assemble queries using Python's string operations, because they are
SQL operations will usually need to use values from Python variables. It is poor
practice to assemble queries using Python's string operations, because they are
vulnerable to SQL injection attacks (see the `xkcd webcomic
<https://xkcd.com/327/>`_ for a humorous example of what can go wrong)::

Expand Down