From: Randy Barlow Date: Wed, 15 Nov 2017 17:53:12 +0000 (-0500) Subject: Fix a typo in basic_relationships.rst. X-Git-Tag: rel_1_1_16~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3314e84f26e883610b32c11998cd2ccfbea5de32;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix a typo in basic_relationships.rst. Signed-off-by: Randy Barlow (cherry picked from commit 096bace0da15c0fc903e55873518c7f47efbce19) --- diff --git a/doc/build/orm/basic_relationships.rst b/doc/build/orm/basic_relationships.rst index 6a121be9fd..2836fe94cf 100644 --- a/doc/build/orm/basic_relationships.rst +++ b/doc/build/orm/basic_relationships.rst @@ -324,7 +324,7 @@ is stored along with each association between ``Parent`` and __tablename__ = 'right' id = Column(Integer, primary_key=True) -As always, the bidirectional version make use of :paramref:`.relationship.back_populates` +As always, the bidirectional version makes use of :paramref:`.relationship.back_populates` or :paramref:`.relationship.backref`:: class Association(Base):