From: Mike Bayer Date: Thu, 29 Sep 2022 21:40:27 +0000 (-0400) Subject: typo X-Git-Tag: rel_2_0_0b1~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb76f256fc235e2ffcdfa79cdf33a810eac8f7b2;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git typo Change-Id: I88d4632accb641c4b7ee306e8ab54a0f46bc6f37 --- diff --git a/doc/build/orm/quickstart.rst b/doc/build/orm/quickstart.rst index 208d9f9b95..c246c03b38 100644 --- a/doc/build/orm/quickstart.rst +++ b/doc/build/orm/quickstart.rst @@ -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.