]> 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)
committerGunnlaugur Þór Briem <gunnlaugur@gmail.com>
Thu, 21 Aug 2014 18:38:23 +0000 (18:38 +0000)
lib/sqlalchemy/sql/dml.py

index 06c50981da06c84f0692cb371417afbef7f3d2f7..1934d0776347929a2f4b8aa80b1341eaa00a6c36 100644 (file)
@@ -736,10 +736,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::