diff options
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 68c7b0bdb..ebdfe1695 100644 --- a/lib/sqlalchemy/dialects/postgresql/array.py +++ b/lib/sqlalchemy/dialects/postgresql/array.py @@ -22,7 +22,7 @@ def Any(other, arrexpr, operator=operators.eq): .. seealso:: - :func:`.expression.any` + :func:`.expression.any_` """ @@ -36,7 +36,7 @@ def All(other, arrexpr, operator=operators.eq): .. seealso:: - :func:`.expression.all` + :func:`.expression.all_` """ |