From: owgreen Date: Sat, 11 Sep 2021 20:04:31 +0000 (+0900) Subject: Fix documentation mistake (#7018) X-Git-Tag: rel_1_4_24~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ddf0a3648fe0dfba1a8b7e9f00db27fa6640a7e;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix documentation mistake (#7018) --- diff --git a/doc/build/orm/declarative_config.rst b/doc/build/orm/declarative_config.rst index 1f4fd0121c..9240d9011b 100644 --- a/doc/build/orm/declarative_config.rst +++ b/doc/build/orm/declarative_config.rst @@ -287,7 +287,7 @@ be illustrated using :meth:`_orm.registry.mapped` as follows:: id = Column(Integer, primary_key=True) @reg.mapped - class ClassThree(BaseOne): + class ClassThree(BaseTwo): __tablename__ = 't1' # will use BaseTwo.metadata id = Column(Integer, primary_key=True)