Skip to content

Commit ee9f22d

Browse files
Docs: Fix markup of module name in sqlite3 docs (#96115)
1 parent 303ef09 commit ee9f22d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/library/sqlite3.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ SQLite for internal data storage. It's also possible to prototype an
1818
application using SQLite and then port the code to a larger database such as
1919
PostgreSQL or Oracle.
2020

21-
The sqlite3 module was written by Gerhard Häring. It provides an SQL interface
21+
The :mod:`!sqlite3` module was written by Gerhard Häring. It provides an SQL interface
2222
compliant with the DB-API 2.0 specification described by :pep:`249`, and
2323
requires SQLite 3.7.15 or newer.
2424

2525
This document includes four main sections:
2626

27-
* :ref:`sqlite3-tutorial` teaches how to use the sqlite3 module.
27+
* :ref:`sqlite3-tutorial` teaches how to use the :mod:`!sqlite3` module.
2828
* :ref:`sqlite3-reference` describes the classes and functions this module
2929
defines.
3030
* :ref:`sqlite3-howtos` details how to handle specific tasks.
@@ -839,7 +839,7 @@ Connection objects
839839
ignored. Note that the backend does not only run statements passed to the
840840
:meth:`Cursor.execute` methods. Other sources include the
841841
:ref:`transaction management <sqlite3-controlling-transactions>` of the
842-
sqlite3 module and the execution of triggers defined in the current
842+
:mod:`!sqlite3` module and the execution of triggers defined in the current
843843
database.
844844

845845
Passing ``None`` as *trace_callback* will disable the trace callback.

0 commit comments

Comments
 (0)