]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Update data_select.rst (#9616)
authorChris <cspollar@users.noreply.github.com>
Fri, 7 Apr 2023 20:07:54 +0000 (16:07 -0400)
committerGitHub <noreply@github.com>
Fri, 7 Apr 2023 20:07:54 +0000 (22:07 +0200)
Fix literal text in example

doc/build/tutorial/data_select.rst

index 4f057b12e9fe5eaf416acb9865f898120798a577..03bc459a1f749ecc54b558bebe11dd6ffdcce07a 100644 (file)
@@ -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