summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvpsx <19900057+vpsx@users.noreply.github.com>2019-04-17 18:48:40 -0500
committerGitHub <noreply@github.com>2019-04-17 18:48:40 -0500
commit6758a459597e5221607a81a693bd98352bb1c94f (patch)
tree59ee2b26b4cec61f349ff0b21ad01312a445480d
parente5fabeb9f96165a08312961fd916a0f99daf2ff5 (diff)
downloadsqlalchemy-6758a459597e5221607a81a693bd98352bb1c94f.tar.gz
Use "parent object" instead of "primary object"
-rw-r--r--lib/sqlalchemy/orm/relationships.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/orm/relationships.py b/lib/sqlalchemy/orm/relationships.py
index 6e3db9d71..008cfcd2a 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).