]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
call the simply police
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 23 Nov 2011 00:01:21 +0000 (19:01 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 23 Nov 2011 00:01:21 +0000 (19:01 -0500)
doc/build/core/tutorial.rst

index 36fa4769541f4d76c512fc576e53fae453ac1271..d347f054680e859dc57c25d56a7c9adadb8fd64b 100644 (file)
@@ -1522,7 +1522,7 @@ which updates one table at a time, but can reference additional tables in an add
 "FROM" clause that can then be referenced in the WHERE clause directly.   On MySQL,
 multiple tables can be embedded into a single UPDATE statement separated by a comma.
 The SQLAlchemy :func:`.update` construct supports both of these modes 
-implicitly, simply by specifying multiple tables in the WHERE clause::
+implicitly, by specifying multiple tables in the WHERE clause::
 
     stmt = users.update().\
             values(name='ed wood').\
@@ -1555,7 +1555,7 @@ The tables are referenced explicitly in the SET clause::
 
 SQLAlchemy doesn't do anything special when these constructs are used on 
 a non-supporting database.  The ``UPDATE FROM`` syntax generates by default
-when multiple tables are present, and the statement will simply be rejected
+when multiple tables are present, and the statement will be rejected
 by the database if this syntax is not supported.
 
 .. _deletes: