summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoufal Ibrahim <noufal@nibrahim.net.in>2014-03-11 17:22:01 +0530
committerNoufal Ibrahim <noufal@nibrahim.net.in>2014-03-11 17:22:01 +0530
commit8b0bf578405567252f6e8aee6e147a24f54d5d4a (patch)
tree7c55d96d2139a446a8421070801dfee07f69678f
parentdbd1015d819ed1402e973bbc2ccac2caa5c36d2b (diff)
downloadsqlalchemy-pr/79.tar.gz
Fixes argument number in docspr/79
The selectable is the third argument to with_polymorphic.
-rw-r--r--doc/build/orm/inheritance.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/inheritance.rst b/doc/build/orm/inheritance.rst
index e6c1e378b..9e30848bf 100644
--- a/doc/build/orm/inheritance.rst
+++ b/doc/build/orm/inheritance.rst
@@ -227,7 +227,7 @@ subclasses:
# use with Query
session.query(entity).all()
-It also accepts a second argument ``selectable`` which replaces the automatic
+It also accepts a third argument ``selectable`` which replaces the automatic
join creation and instead selects directly from the selectable given. This
feature is normally used with "concrete" inheritance, described later, but can
be used with any kind of inheritance setup in the case that specialized SQL