]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
another typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 5 Jul 2011 23:33:05 +0000 (19:33 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 5 Jul 2011 23:33:05 +0000 (19:33 -0400)
doc/build/core/tutorial.rst

index ae4806b7fd2a080c55b1b04f00fd1e44a53ae33b..dbac1c2fd6a53bd08448e0e24ba58d0cc9165bfe 100644 (file)
@@ -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: