]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix copy-paste error in Delete doc
authorGunnlaugur Þór Briem <gunnlaugur@gmail.com>
Thu, 31 Jul 2014 23:23:56 +0000 (23:23 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 21 Aug 2014 21:35:08 +0000 (17:35 -0400)
lib/sqlalchemy/sql/dml.py

index cab6c1daf88d0287803a1ac1e52f56162c06ddcd..e8f143fdafe857144bcd345b8e2e9a082a280190 100644 (file)
@@ -735,10 +735,10 @@ class Delete(UpdateBase):
         :meth:`~.TableClause.delete` method on
         :class:`~.schema.Table`.
 
-        :param table: The table to be updated.
+        :param table: The table to delete rows from.
 
         :param whereclause: A :class:`.ClauseElement` describing the ``WHERE``
-          condition of the ``UPDATE`` statement. Note that the
+          condition of the ``DELETE`` statement. Note that the
           :meth:`~Delete.where()` generative method may be used instead.
 
         .. seealso::