]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Use "parent object" instead of "primary object" 4619/head
authorvpsx <19900057+vpsx@users.noreply.github.com>
Wed, 17 Apr 2019 23:48:40 +0000 (18:48 -0500)
committerGitHub <noreply@github.com>
Wed, 17 Apr 2019 23:48:40 +0000 (18:48 -0500)
lib/sqlalchemy/orm/relationships.py

index 6e3db9d718a0a2874bbd37dfd7f6fab26679633c..008cfcd2a8c873a21e2aee69d6d09213adf2b465 100644 (file)
@@ -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).