diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-07-06 16:42:18 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-07-06 16:42:18 -0400 |
commit | 71c47ac7ae7868095f6fbb61585a75292fd0ce0f (patch) | |
tree | 0e38ead480d2cdc8a27f027040ce09eb6c038496 | |
parent | cec89cae156903c9a77dff29a1213e70fa915b52 (diff) | |
download | sqlalchemy-71c47ac7ae7868095f6fbb61585a75292fd0ce0f.tar.gz |
use "target tables" here
-rw-r--r-- | doc/build/changelog/changelog_08.rst | 2 | ||||
-rw-r--r-- | doc/build/changelog/changelog_09.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index 972cf2ee7..afb0c4991 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -18,7 +18,7 @@ :tags: feature, sql The :func:`.update`, :func:`.insert`, and :func:`.delete` constructs - will now interpret ORM entities as FROM clauses to be operated upon, + will now interpret ORM entities as target tables to be operated upon, e.g.:: from sqlalchemy import insert, update, delete diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst index a4b0fb9d3..e46772b63 100644 --- a/doc/build/changelog/changelog_09.rst +++ b/doc/build/changelog/changelog_09.rst @@ -24,7 +24,7 @@ :tags: feature, sql The :func:`.update`, :func:`.insert`, and :func:`.delete` constructs - will now interpret ORM entities as FROM clauses to be operated upon, + will now interpret ORM entities as target tables to be operated upon, e.g.:: from sqlalchemy import insert, update, delete |