From: Mike Bayer Date: Tue, 5 Jul 2011 23:33:05 +0000 (-0400) Subject: another typo X-Git-Tag: rel_0_7_2~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b370de69eb0682a822970225c5c46584fae440a2;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git another typo --- diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst index ae4806b7fd..dbac1c2fd6 100644 --- a/doc/build/core/tutorial.rst +++ b/doc/build/core/tutorial.rst @@ -812,7 +812,7 @@ In SQLAlchemy, any :class:`.Table`, :func:`.select` construct, or other selectable can be turned into an alias using the :meth:`.FromClause.alias` method, which produces a :class:`.Alias` construct. As an example, suppose we know that our user ``jack`` has two particular email addresses. How can we locate jack based on the combination of those two -addresses? To accomplish this, we'd use a join to the ``addresses` table, +addresses? To accomplish this, we'd use a join to the ``addresses`` table, once for each address. We create two :class:`.Alias` constructs against ``addresses``, and then use them both within a :func:`.select` construct: