]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fricking typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 25 Jan 2010 00:47:02 +0000 (00:47 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 25 Jan 2010 00:47:02 +0000 (00:47 +0000)
doc/build/sqlexpression.rst

index 3433c8f74b46fa08f36ec3f65faa47eb283ffdaf..c34e6e790f412638800efc583f35aca9053a361f 100644 (file)
@@ -890,7 +890,7 @@ Also available, though not supported on all databases, are ``intersect()``, ``in
     {stop}[(1, 1, u'jack@yahoo.com'), (4, 2, u'wendy@aol.com')]
 
 A common issue with so-called "compound" selectables arises due to the fact that they nest with parenthesis.  SQLite in particular doesn't like a statement that starts with parenthesis.  So when nesting a "compound" inside a "compound", it's often necessary to apply
-``.alias().select()`` to the first element of the outermost compound, if that element is also a compount.  For example, to nest a "union" and a "select" inside of "except\_", SQLite will want
+``.alias().select()`` to the first element of the outermost compound, if that element is also a compound.  For example, to nest a "union" and a "select" inside of "except\_", SQLite will want
 the "union" to be stated as a subquery:
 
 .. sourcecode:: pycon+sql