diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2016-08-08 16:39:15 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2016-08-08 16:39:15 +0300 |
commit | fd164a6c849289b81f29059dda822c3d5902e40e (patch) | |
tree | 3c4a3af786c47c960b73c62c8c4c2373c6048a60 /lib/sqlalchemy/dialects/postgresql/array.py | |
parent | f2fa9d000b44a54b0fd3ae6114eb5d53ef20c3b8 (diff) | |
download | sqlalchemy-pr/299.tar.gz |
Spelling fixespr/299
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/array.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/array.py | 4 |
1 files changed, 2 insertions, 2 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:: |