From f04147d9490df68b1fe1bb53991062d82017f865 Mon Sep 17 00:00:00 2001 From: Lele Gaifax Date: Sun, 24 Jan 2021 13:59:03 -0500 Subject: 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 --- lib/sqlalchemy/sql/compiler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/sqlalchemy/sql/compiler.py') diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index ef7db0bbe..aabc257eb 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -711,7 +711,7 @@ class SQLCompiler(Compiled): expect that they are to be invoked in an "executemany" style, which may impact how the statement will be expected to return the values of defaults and autoincrement / sequences and similar. - Depending on the backend and driver in use, support for retreiving + Depending on the backend and driver in use, support for retrieving these values may be disabled which means SQL expressions may be rendered inline, RETURNING may not be rendered, etc. @@ -4684,7 +4684,7 @@ class IdentifierPreparer(object): return self.quote(schema) def quote(self, ident, force=None): - """Conditionally quote an identfier. + """Conditionally quote an identifier. The identifier is quoted if it is a reserved word, contains quote-necessary characters, or is an instance of -- cgit v1.2.1