Skip to content

Commit fcf0421

Browse files
Docs: Fix markup of module name in sqlite3 docs (GH-96115)
(cherry picked from commit ee9f22d) Co-authored-by: Erlend E. Aasland <[email protected]>
1 parent f21d7e5 commit fcf0421

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.
@@ -826,7 +826,7 @@ Connection objects
826826
ignored. Note that the backend does not only run statements passed to the
827827
:meth:`Cursor.execute` methods. Other sources include the
828828
:ref:`transaction management <sqlite3-controlling-transactions>` of the
829-
sqlite3 module and the execution of triggers defined in the current
829+
:mod:`!sqlite3` module and the execution of triggers defined in the current
830830
database.
831831

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

0 commit comments

Comments
 (0)