From 3fec5028e695ad138aa46a0ae66c55e8bcb653f6 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 17 Mar 2021 15:07:50 -0400 Subject: [PATCH] fix typo Change-Id: I7afb81cfa4f8041181c24666bb9acd71ff45692b --- lib/sqlalchemy/dialects/postgresql/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index aea5ca17ca..68a145e016 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: -- 2.47.2