]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Doc: Update doc/build/tutorial/data_select.rst (#10506)
authorAmirSoroush <amirsoroush.dev@gmail.com>
Thu, 19 Oct 2023 16:44:26 +0000 (19:44 +0300)
committerGitHub <noreply@github.com>
Thu, 19 Oct 2023 16:44:26 +0000 (18:44 +0200)
Removed an extra "that" in a sentence.

doc/build/tutorial/data_select.rst

index abdbb2ec54429ea62969534a4da6912fb2991361..ffeb9dfdb65520b8814ec31ba4ebed7aaaf1e77e 100644 (file)
@@ -1236,7 +1236,7 @@ organized into a subquery using :meth:`_sql.CompoundSelect.subquery`, which
 then links to ORM objects using the :func:`_orm.aliased` function. This works
 in the same way introduced at :ref:`tutorial_subqueries_orm_aliased`, to first
 create an ad-hoc "mapping" of our desired entity to the subquery, then
-selecting from that that new entity as though it were any other mapped class.
+selecting from that new entity as though it were any other mapped class.
 In the example below, we are able to add additional criteria such as ORDER BY
 outside of the UNION itself, as we can filter or order by the columns exported
 by the subquery::