summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/base.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-03-17 15:07:50 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2021-03-17 15:28:17 -0400
commit3fec5028e695ad138aa46a0ae66c55e8bcb653f6 (patch)
tree7ce1c8f8db64fb4d0de3745f731e2aca4bc5b409 /lib/sqlalchemy/dialects/postgresql/base.py
parent46763a6003d54c4942dfce5ab33cda7ff9c05dac (diff)
downloadsqlalchemy-3fec5028e695ad138aa46a0ae66c55e8bcb653f6.tar.gz
fix typo
Change-Id: I7afb81cfa4f8041181c24666bb9acd71ff45692b
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py
index aea5ca17c..68a145e01 100644
--- a/lib/sqlalchemy/dialects/postgresql/base.py
+++ b/lib/sqlalchemy/dialects/postgresql/base.py
@@ -1064,7 +1064,7 @@ rows. A large portion of PostgreSQL's JSON functions for example such as
``json_each()``, ``json_to_record()``, ``json_populate_recordset()`` use such
forms. These classes of SQL function calling forms in SQLAlchemy are available
using the :meth:`_functions.FunctionElement.table_valued` method in conjunction
-with :class:`_function.Function` objects generated from the :data:`_sql.func`
+with :class:`_functions.Function` objects generated from the :data:`_sql.func`
namespace.
Examples from PostgreSQL's reference documentation follow below: