]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix: typos in doc/build/core and doc/build/errors (#7006)
authorKevin Kirsche <kevin.kirsche@one.verizon.com>
Wed, 8 Sep 2021 19:14:43 +0000 (15:14 -0400)
committerGitHub <noreply@github.com>
Wed, 8 Sep 2021 19:14:43 +0000 (21:14 +0200)
doc/build/core/connections.rst
doc/build/errors.rst

index 5bdcbbb64839009c9bcb718e7f02acc4b792fe4c..ac9ee717fba131bc041a834e38947e5ff43a5360 100644 (file)
@@ -1409,7 +1409,7 @@ Basic guidelines include:
       # ...
     sqlalchemy.exc.InvalidRequestError: Closure variable named 'foo' inside of
     lambda callable <code object <lambda> at 0x7fed15f35450, file
-    "<stdin>", line 2> does not refer to a cachable SQL element, and also
+    "<stdin>", line 2> does not refer to a cacheable SQL element, and also
     does not appear to be serving as a SQL literal bound value based on the
     default SQL expression returned by the function.  This variable needs to
     remain outside the scope of a SQL-generating lambda so that a proper cache
@@ -1419,7 +1419,7 @@ Basic guidelines include:
     closure variables from being part of the cache key.
 
   The above error indicates that :class:`_sql.LambdaElement` will not assume
-  that the ``Foo`` object passed in will contine to behave the same in all
+  that the ``Foo`` object passed in will continue to behave the same in all
   cases.    It also won't assume it can use ``Foo`` as part of the cache key
   by default; if it were to use the ``Foo`` object as part of the cache key,
   if there were many different ``Foo`` objects this would fill up the cache
index 4058b06eaf3e7bf421086a14bb7de665aaca3a17..a8e0939a49c2450ff73af44db1b6b4d7f801d8d0 100644 (file)
@@ -48,7 +48,7 @@ select() construct created in "legacy" mode; keyword arguments, etc.
 The :func:`_expression.select` construct has been updated as of SQLAlchemy
 1.4 to support the newer calling style that will be standard in
 :ref:`SQLAlchemy 2.0 <error_b8d9>`.   For backwards compatibility in the
-interm, the construct accepts arguments in both the "legacy" style as well
+interim, the construct accepts arguments in both the "legacy" style as well
 as the "new" style.
 
 The "new" style features that column and table expressions are passed
@@ -1267,7 +1267,7 @@ attempt, which is unsupported when using SQLAlchemy with AsyncIO dialects.
 
 .. _error_xd3s:
 
-No Inspection Avaliable
+No Inspection Available
 -----------------------
 
 Using the :func:`_sa.inspect` function directly on an