Skip to content
Prev Previous commit
Next Next commit
Typo
  • Loading branch information
Erlend E. Aasland committed Oct 29, 2021
commit 02d2a53b901d1f9b2894e7c1daf27f469ea112cc
2 changes: 1 addition & 1 deletion Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ vulnerable to an SQL injection attacks (see the `xkcd webcomic

Instead, use the DB-API's parameter substitution by putting placeholders in the
query string. Provide the actual values as a :class:`tuple` as the second
argument oo the cursor's :meth:`~Cursor.execute` method. An SQL statement may
argument to the cursor's :meth:`~Cursor.execute` method. An SQL statement may
use one of two kinds of placeholders: question marks (qmark style) or named
placeholders (named style). For the qmark style, ``parameters`` must be a
:term:`sequence <sequence>`. For the named style, it can be either a
Expand Down