]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Use "parent object" instead of "primary object"
authorvpsx <19900057+vpsx@users.noreply.github.com>
Wed, 17 Apr 2019 23:48:40 +0000 (18:48 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 18 Apr 2019 02:51:00 +0000 (22:51 -0400)
(cherry picked from commit 6758a459597e5221607a81a693bd98352bb1c94f)

lib/sqlalchemy/orm/relationships.py

index efe326dc5f5aa242aefaa28c2979f83477af7bd9..c4908c7ff57c94e0da83421deae9df6e7bc8cd1d 100644 (file)
@@ -676,8 +676,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).