From: Gunnlaugur Þór Briem Date: Thu, 31 Jul 2014 23:23:56 +0000 (+0000) Subject: Fix copy-paste error in Delete doc X-Git-Tag: rel_1_0_0b1~205^2~51^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c4d0a4d6611fd891fb7afda6db277e9fbf83e70;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix copy-paste error in Delete doc --- diff --git a/lib/sqlalchemy/sql/dml.py b/lib/sqlalchemy/sql/dml.py index 06c50981da..1934d07763 100644 --- a/lib/sqlalchemy/sql/dml.py +++ b/lib/sqlalchemy/sql/dml.py @@ -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::