From: Chris Date: Fri, 7 Apr 2023 20:07:54 +0000 (-0400) Subject: Update data_select.rst (#9616) X-Git-Tag: rel_2_0_10~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=24587f200934733b1a6734308c19210c7d51bc86;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Update data_select.rst (#9616) Fix literal text in example --- diff --git a/doc/build/tutorial/data_select.rst b/doc/build/tutorial/data_select.rst index 4f057b12e9..03bc459a1f 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