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_0_9_8~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01aeb3db3b4b6e8091e921ca73c84b041b730fb6;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 cab6c1daf8..e8f143fdaf 100644 --- a/lib/sqlalchemy/sql/dml.py +++ b/lib/sqlalchemy/sql/dml.py @@ -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::