Add :term:s for iterator.
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 35f3f38..029b8ba 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -71,10 +71,10 @@
):
c.execute('insert into stocks values (?,?,?,?,?)', t)
-To retrieve data after executing a SELECT statement, you can either treat the
-cursor as an iterator, call the cursor's :meth:`fetchone` method to retrieve a
-single matching row, or call :meth:`fetchall` to get a list of the matching
-rows.
+To retrieve data after executing a SELECT statement, you can either treat the
+cursor as an :term:`iterator`, call the cursor's :meth:`fetchone` method to
+retrieve a single matching row, or call :meth:`fetchall` to get a list of the
+matching rows.
This example uses the iterator form::
@@ -410,9 +410,9 @@
.. method:: Cursor.executemany(sql, seq_of_parameters)
- Executes a SQL command against all parameter sequences or mappings found in the
- sequence *sql*. The :mod:`sqlite3` module also allows using an iterator yielding
- parameters instead of a sequence.
+ Executes a SQL command against all parameter sequences or mappings found in
+ the sequence *sql*. The :mod:`sqlite3` module also allows using an
+ :term:`iterator` yielding parameters instead of a sequence.
.. literalinclude:: ../includes/sqlite3/executemany_1.py