From: vpsx <19900057+vpsx@users.noreply.github.com> Date: Wed, 17 Apr 2019 23:48:40 +0000 (-0500) Subject: Use "parent object" instead of "primary object" X-Git-Tag: rel_1_3_4~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4619%2Fhead;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Use "parent object" instead of "primary object" --- diff --git a/lib/sqlalchemy/orm/relationships.py b/lib/sqlalchemy/orm/relationships.py index 6e3db9d718..008cfcd2a8 100644 --- a/lib/sqlalchemy/orm/relationships.py +++ b/lib/sqlalchemy/orm/relationships.py @@ -711,8 +711,8 @@ class RelationshipProperty(StrategizedProperty): :param primaryjoin: a SQL expression that will be used as the primary - join of this child object against the parent object, or in a - many-to-many relationship the join of the primary object to the + join of the child object against the parent object, or in a + many-to-many relationship the join of the parent object to the association table. By default, this value is computed based on the foreign key relationships of the parent and child tables (or association table).