summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris <cspollar@users.noreply.github.com>2023-04-07 16:07:54 -0400
committerGitHub <noreply@github.com>2023-04-07 22:07:54 +0200
commit24587f200934733b1a6734308c19210c7d51bc86 (patch)
tree6fa3e557eed6b06c407a8fb5afa1f27abacbf4f1
parent9bbb70ffd559c1a9e085fb379a5be4b06da0cd7c (diff)
downloadsqlalchemy-24587f200934733b1a6734308c19210c7d51bc86.tar.gz
Update data_select.rst (#9616)
Fix literal text in example
-rw-r--r--doc/build/tutorial/data_select.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/tutorial/data_select.rst b/doc/build/tutorial/data_select.rst
index 4f057b12e..03bc459a1 100644
--- a/doc/build/tutorial/data_select.rst
+++ b/doc/build/tutorial/data_select.rst
@@ -274,7 +274,7 @@ SQL that's quicker to write literally.
The :func:`_sql.text` construct introduced at
:ref:`tutorial_working_with_transactions` can in fact be embedded into a
:class:`_sql.Select` construct directly, such as below where we manufacture
-a hardcoded string literal ``'some label'`` and embed it within the
+a hardcoded string literal ``'some phrase'`` and embed it within the
SELECT statement::
>>> from sqlalchemy import text