]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 29 Sep 2022 21:40:27 +0000 (17:40 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 29 Sep 2022 21:40:27 +0000 (17:40 -0400)
Change-Id: I88d4632accb641c4b7ee306e8ab54a0f46bc6f37

doc/build/orm/quickstart.rst

index 208d9f9b954c95146e221f35c3bd8464164d931a..c246c03b387dbb1d3a8dfdc145120fc2c7c10e82 100644 (file)
@@ -95,7 +95,7 @@ used by SQLAlchemy Core to represent database columns.
 
 All ORM mapped classes require at least one column be declared as part of the
 primary key, typically by using the :paramref:`_schema.Column.primary_key`
-parameter on those :class:`_orm.mapped_column` objects that should be part
+parameter on those :func:`_orm.mapped_column` objects that should be part
 of the key.  In the above example, the ``User.id`` and ``Address.id``
 columns are marked as primary key.