diff options
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/array.py | 4 | ||||
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/pg8000.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/array.py b/lib/sqlalchemy/dialects/postgresql/array.py index 8d811aa55..af8950ac6 100644 --- a/lib/sqlalchemy/dialects/postgresql/array.py +++ b/lib/sqlalchemy/dialects/postgresql/array.py @@ -19,7 +19,7 @@ except ImportError: def Any(other, arrexpr, operator=operators.eq): """A synonym for the :meth:`.ARRAY.Comparator.any` method. - This method is legacy and is here for backwards-compatiblity. + This method is legacy and is here for backwards-compatibility. .. seealso:: @@ -33,7 +33,7 @@ def Any(other, arrexpr, operator=operators.eq): def All(other, arrexpr, operator=operators.eq): """A synonym for the :meth:`.ARRAY.Comparator.all` method. - This method is legacy and is here for backwards-compatiblity. + This method is legacy and is here for backwards-compatibility. .. seealso:: diff --git a/lib/sqlalchemy/dialects/postgresql/pg8000.py b/lib/sqlalchemy/dialects/postgresql/pg8000.py index 9daab5851..34d11afe5 100644 --- a/lib/sqlalchemy/dialects/postgresql/pg8000.py +++ b/lib/sqlalchemy/dialects/postgresql/pg8000.py @@ -28,7 +28,7 @@ Typically, this can be changed to ``utf-8``, as a more useful default:: # encoding client_encoding = utf8 -The ``client_encoding`` can be overriden for a session by executing the SQL: +The ``client_encoding`` can be overridden for a session by executing the SQL: SET CLIENT_ENCODING TO 'utf8'; |