]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 17 Mar 2021 19:07:50 +0000 (15:07 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 17 Mar 2021 19:28:17 +0000 (15:28 -0400)
Change-Id: I7afb81cfa4f8041181c24666bb9acd71ff45692b

lib/sqlalchemy/dialects/postgresql/base.py

index aea5ca17caea3f8d4381537f9e68dfa6ba43fe43..68a145e0167976401139d6bfa358516e2f43a33d 100644 (file)
@@ -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: