summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/array.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2016-08-16 12:04:41 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2016-08-16 12:04:41 -0400
commit5b86ae5e8a50b9df54310312402fb2e12d742a2a (patch)
tree009589d0f5555cd9d710672b75c65172305aed9e /lib/sqlalchemy/dialects/postgresql/array.py
parent9f41f64cd2e9cc9da8df55afc63bb9706ed41049 (diff)
parentfd164a6c849289b81f29059dda822c3d5902e40e (diff)
downloadsqlalchemy-5b86ae5e8a50b9df54310312402fb2e12d742a2a.tar.gz
Merge remote-tracking branch 'origin/pr/299'
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/array.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/array.py4
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::