summaryrefslogtreecommitdiff
path: root/doc/build/tutorial/data_insert.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/build/tutorial/data_insert.rst')
-rw-r--r--doc/build/tutorial/data_insert.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/build/tutorial/data_insert.rst b/doc/build/tutorial/data_insert.rst
index 1aa1ca470..5087434d7 100644
--- a/doc/build/tutorial/data_insert.rst
+++ b/doc/build/tutorial/data_insert.rst
@@ -11,13 +11,13 @@
.. _tutorial_core_insert:
-Inserting Rows with ``Insert()`` Constructs
--------------------------------------------
+Using INSERT Statements
+-----------------------
-When using Core as well as within some ORM use cases, a SQL INSERT statement is
-generated directly using the :func:`_sql.insert` function - this function
-generates a new instance of :class:`_sql.Insert` which represents an INSERT
-statement in SQL, that adds new data into a table.
+When using Core as well as when using the ORM for bulk operations, a SQL INSERT
+statement is generated directly using the :func:`_sql.insert` function - this
+function generates a new instance of :class:`_sql.Insert` which represents an
+INSERT statement in SQL, that adds new data into a table.
.. container:: orm-header