summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Moore <etmoore@gmail.com>2021-01-14 03:22:48 -0500
committersqla-tester <sqla-tester@sqlalchemy.org>2021-01-14 03:22:48 -0500
commit4d20df14846e644b88fbe8a288116422bf5e343e (patch)
tree29f7c717dae44d6aaf124aae37ecbad7c87c685e
parent0e36c1bbe7c4fc83df13e756f04d9fa0fa8d5d39 (diff)
downloadsqlalchemy-4d20df14846e644b88fbe8a288116422bf5e343e.tar.gz
Fix docs typo: subuqery -> subquery
<!-- Provide a general summary of your proposed changes in the Title field above --> ### Description Fixes #5839 (sorry, realized just now that an issue wasn't required) ### Checklist <!-- go over following points. check them with an `x` if they do apply, (they turn into clickable checkboxes once the PR is submitted, so no need to do everything at once) --> This pull request is: - [x] A documentation / typographical error fix - Good to go, no issue or tests are needed - [ ] A short code fix - please include the issue number, and create an issue if none exists, which must include a complete example of the issue. one line code fixes without an issue and demonstration will not be accepted. - Please include: `Fixes: #<issue number>` in the commit message - please include tests. one line code fixes without tests will not be accepted. - [ ] A new feature implementation - please include the issue number, and create an issue if none exists, which must include a complete example of how the feature would look. - Please include: `Fixes: #<issue number>` in the commit message - please include tests. **Have a nice day!** Closes: #5840 Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/5840 Pull-request-sha: b6f6af929fab4dab771565f6373b0275acbca793 Change-Id: I0b4c9b2d893e8141ee1cd21742a9b111fe371bac
-rw-r--r--doc/build/core/operators.rst2
-rw-r--r--doc/build/orm/queryguide.rst2
-rw-r--r--doc/build/tutorial/data.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/build/core/operators.rst b/doc/build/core/operators.rst
index ac9633b77..ef821c8d0 100644
--- a/doc/build/core/operators.rst
+++ b/doc/build/core/operators.rst
@@ -248,7 +248,7 @@ To illustrate the parameters rendered:
[...] (1, 1, 2, 2){stop}
[('spongebob',), ('sandy',)]
-Subuqery IN
+Subquery IN
~~~~~~~~~~~
Finally, the :meth:`_sql.ColumnOperators.in_` and :meth:`_sql.ColumnOperators.not_in`
diff --git a/doc/build/orm/queryguide.rst b/doc/build/orm/queryguide.rst
index c7a0af717..faa1efdef 100644
--- a/doc/build/orm/queryguide.rst
+++ b/doc/build/orm/queryguide.rst
@@ -361,7 +361,7 @@ construct, in a similar manner as discussed below in :ref:`orm_queryguide_subque
The difference between using the :class:`_sql.TextualSelect` directly with
:meth:`_sql.Select.from_statement` versus making use of :func:`_sql.aliased`
-is that in the former case, no subuqery is produced in the resulting SQL.
+is that in the former case, no subquery is produced in the resulting SQL.
This can in some scenarios be advantageous from a performance or complexity
perspective.
diff --git a/doc/build/tutorial/data.rst b/doc/build/tutorial/data.rst
index fe3b2c5ab..bc81cb027 100644
--- a/doc/build/tutorial/data.rst
+++ b/doc/build/tutorial/data.rst
@@ -1387,7 +1387,7 @@ Correlated Updates
~~~~~~~~~~~~~~~~~~
An UPDATE statement can make use of rows in other tables by using a
-:ref:`correlated subquery <tutorial_scalar_subquery>`. A subuqery may be used
+:ref:`correlated subquery <tutorial_scalar_subquery>`. A subquery may be used
anywhere a column expression might be placed::
>>> scalar_subq = (