summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/base.py
diff options
context:
space:
mode:
authorLele Gaifax <lele@metapensiero.it>2021-01-24 13:59:03 -0500
committersqla-tester <sqla-tester@sqlalchemy.org>2021-01-24 13:59:03 -0500
commitf04147d9490df68b1fe1bb53991062d82017f865 (patch)
treeeebea42a0791544c9a10f1d7055a17497cf4108e /lib/sqlalchemy/sql/base.py
parent2df6eb140b4feb86d7cc99c0c976d1b22eb6e25b (diff)
downloadsqlalchemy-f04147d9490df68b1fe1bb53991062d82017f865.tar.gz
Fix many spell glitches in docstrings and comments
These were revealed by running `pylint --disable all --enable spelling --spelling-dict en_US` over all sources. Closes: #5868 Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/5868 Pull-request-sha: bb249195d92e3b806e81ecf1192d5a1b3cd5db48 Change-Id: I96080ec93a9fbd20ce21e9e16265b3c77f22bb14
Diffstat (limited to 'lib/sqlalchemy/sql/base.py')
-rw-r--r--lib/sqlalchemy/sql/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/base.py b/lib/sqlalchemy/sql/base.py
index 220bbb115..fe9455fb9 100644
--- a/lib/sqlalchemy/sql/base.py
+++ b/lib/sqlalchemy/sql/base.py
@@ -543,7 +543,7 @@ class Generative(HasMemoized):
class InPlaceGenerative(HasMemoized):
"""Provide a method-chaining pattern in conjunction with the
- @_generative decorator taht mutates in place."""
+ @_generative decorator that mutates in place."""
def _generate(self):
skip = self._memoized_keys
@@ -653,7 +653,7 @@ class Options(util.with_metaclass(_MetaOptions)):
d = other._state_dict()
# only support a merge with another object of our class
- # and which does not have attrs that we dont. otherwise
+ # and which does not have attrs that we don't. otherwise
# we risk having state that might not be part of our cache
# key strategy