summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2017-07-17 10:31:07 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2017-07-17 10:31:07 -0400
commit32f67637cd705840751bd1d8d37db87df5823a4b (patch)
treeb6189f3df9a902cbff122b7df423b81ba87be3e8
parent2eeea03973868f01aa1b85f41bdff3561be71838 (diff)
parent43f41fbfaa8f3030148c131628c5e9fe8fda9f66 (diff)
downloadsqlalchemy-32f67637cd705840751bd1d8d37db87df5823a4b.tar.gz
Merge branch 'patch-1' of https://github.com/tomsitter/sqlalchemy
-rw-r--r--doc/build/orm/tutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst
index f742151b0..9569e4b1f 100644
--- a/doc/build/orm/tutorial.rst
+++ b/doc/build/orm/tutorial.rst
@@ -1386,7 +1386,7 @@ is an important method at the center of usage for any SQL-fluent application.
ON clause is a plain SQL expression. To control the first entity in the list
of JOINs, use the :meth:`.Query.select_from` method::
- query = Session.query(User, Address).select_from(Address).join(User)
+ query = session.query(User, Address).select_from(Address).join(User)
.. _ormtutorial_aliases: