diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2014-08-21 17:33:26 -0400 |
---|---|---|
committer | mike bayer <mike_mp@zzzcomputing.com> | 2014-08-21 17:33:26 -0400 |
commit | b4af17b342162f54ae097eb13d52185e24be196c (patch) | |
tree | 86d4b75d9cf0261f30243e979f643220ee303126 | |
parent | 374173e89d4e21a75bfabd8a655d17c247b6f1fc (diff) | |
parent | a12fcd1487f6ae210486fa4a015d9ea71e3bb7d7 (diff) | |
download | sqlalchemy-b4af17b342162f54ae097eb13d52185e24be196c.tar.gz |
Merge pull request #130 from gthb/docfix-1
Fix doc typos and copy-paste error
-rw-r--r-- | lib/sqlalchemy/pool.py | 2 | ||||
-rw-r--r-- | lib/sqlalchemy/sql/dml.py | 4 | ||||
-rw-r--r-- | test/orm/test_options.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/pool.py b/lib/sqlalchemy/pool.py index 89cddfc31..bc9affe4a 100644 --- a/lib/sqlalchemy/pool.py +++ b/lib/sqlalchemy/pool.py @@ -305,7 +305,7 @@ class Pool(log.Identified): """Return a new :class:`.Pool`, of the same class as this one and configured with identical creation arguments. - This method is used in conjunection with :meth:`dispose` + This method is used in conjunction with :meth:`dispose` to close out an entire :class:`.Pool` and create a new one in its place. diff --git a/lib/sqlalchemy/sql/dml.py b/lib/sqlalchemy/sql/dml.py index 06c50981d..1934d0776 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:: diff --git a/test/orm/test_options.py b/test/orm/test_options.py index 6eba38d15..1c1a797a6 100644 --- a/test/orm/test_options.py +++ b/test/orm/test_options.py @@ -497,7 +497,7 @@ class OptionsTest(PathTest, QueryTest): class OptionsNoPropTest(_fixtures.FixtureTest): """test the error messages emitted when using property - options in conjunection with column-only entities, or + options in conjunction with column-only entities, or for not existing options """ |