]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
typos
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 21 Oct 2013 22:33:59 +0000 (18:33 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 21 Oct 2013 22:33:59 +0000 (18:33 -0400)
doc/build/changelog/changelog_09.rst
doc/build/changelog/migration_09.rst

index 16297e23f1b2ec7312381fdae329e18ef85cd38e..6ac4d1726fa635dee13f38f8507140c0ead895a0 100644 (file)
@@ -21,8 +21,9 @@
         new copy is assigned the actual type of the compared column.  Previously,
         this logic would occur on the given :func:`.bindparam` in place.
         Additionally, a similar process now occurs for :func:`.bindparam` constructs
-        passed to :meth:`.ValuesBase.values` for a :class:`.Insert` or
-        :class:`.Update` construct.
+        passed to :meth:`.ValuesBase.values` for an :class:`.Insert` or
+        :class:`.Update` construct, within the compilation phase of the
+        construct.
 
         These are both subtle behavioral changes which may impact some
         usages.
index d80bc30404965826d1e4f0c54d5f48649b405a1f..f0254c78951ec9a9069c2b27306ee19176aa6d09 100644 (file)
@@ -330,8 +330,9 @@ The logic which "upgrades" a :func:`.bindparam` construct to take on the
 type of the enclosing expression has been improved in two ways.  First, the
 :func:`.bindparam` object is **copied** before the new type is assigned, so that
 the given :func:`.bindparam` is not mutated in place.  Secondly, this same
-operation occurs within the :meth:`.Values.values` method of :class:`.Insert`
-and :class:`.Update`.
+operation occurs when an :class:`.Insert` or :class:`.Update` construct is compiled,
+regarding the "values" that were set in the statement via the :meth:`.ValuesBase.values`
+method.
 
 If given an untyped :func:`.bindparam`::