diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 3ce598c6ff1afcc59fe009bcf763e613984d2cac..87c648ddda18a0871334a6168ce17dd76d38d362 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -1336,8 +1336,9 @@ Using :mod:`sqlite3` efficiently Using shortcut methods ^^^^^^^^^^^^^^^^^^^^^^ -Using the nonstandard :meth:`execute`, :meth:`executemany` and -:meth:`executescript` methods of the :class:`Connection` object, your code can +Using the :meth:`~Connection.execute`, +:meth:`~Connection.executemany`, and :meth:`~Connection.executescript` +methods of the :class:`Connection` class, your code can be written more concisely because you don't have to create the (often superfluous) :class:`Cursor` objects explicitly. Instead, the :class:`Cursor` objects are created implicitly and these shortcut methods return the cursor