summaryrefslogtreecommitdiff
path: root/doc/build/orm/extensions/declarative/relationships.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/build/orm/extensions/declarative/relationships.rst')
-rw-r--r--doc/build/orm/extensions/declarative/relationships.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/extensions/declarative/relationships.rst b/doc/build/orm/extensions/declarative/relationships.rst
index fb53c28bb..fc9dc114f 100644
--- a/doc/build/orm/extensions/declarative/relationships.rst
+++ b/doc/build/orm/extensions/declarative/relationships.rst
@@ -130,7 +130,7 @@ as well, passing the string name of the table as defined in the
id = Column(Integer, primary_key=True)
keywords = relationship("Keyword", secondary="keywords")
-As with traditional mapping, its generally not a good idea to use
+As with traditional mapping, it's generally not a good idea to use
a :class:`.Table` as the "secondary" argument which is also mapped to
a class, unless the :func:`.relationship` is declared with ``viewonly=True``.
Otherwise, the unit-of-work system may attempt duplicate INSERT and