summaryrefslogtreecommitdiff
path: root/doc/build/changelog/changelog_10.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/build/changelog/changelog_10.rst')
-rw-r--r--doc/build/changelog/changelog_10.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst
index 16a38e662..65a27d73a 100644
--- a/doc/build/changelog/changelog_10.rst
+++ b/doc/build/changelog/changelog_10.rst
@@ -57,7 +57,7 @@
:versions: 1.1.0b3
Fixed bug in :paramref:`.Select.with_for_update.of`, where the Oracle
- "rownum" approach to LIMIT/OFFSET would fail to accomodate for the
+ "rownum" approach to LIMIT/OFFSET would fail to accommodate for the
expressions inside the "OF" clause, which must be stated at the topmost
level referring to expression within the subquery. The expressions are
now added to the subquery if needed.
@@ -212,7 +212,7 @@
:tickets: 3690
Fixed bug where when using ``case_sensitive=False`` with an
- :class:`.Engine`, the result set would fail to correctly accomodate
+ :class:`.Engine`, the result set would fail to correctly accommodate
for duplicate column names in the result set, causing an error
when the statement is executed in 1.0, and preventing the
"ambiguous column" exception from functioning in 1.1.
@@ -1216,7 +1216,7 @@
pool of only a single connection were used, this means the pool would
be fully checked out until that stack trace were freed. This mostly
impacts very specific debugging scenarios and is unlikely to have been
- noticable in any production application. The fix applies an
+ noticeable in any production application. The fix applies an
explicit checkin of the record before re-raising the caught exception.
@@ -1362,7 +1362,7 @@
Fixed bug where the truncation of long labels in SQL could produce
a label that overlapped another label that is not truncated; this
- because the length threshhold for truncation was greater than
+ because the length threshold for truncation was greater than
the portion of the label that remains after truncation. These
two values have now been made the same; label_length - 6.
The effect here is that shorter column labels will be "truncated"
@@ -1920,7 +1920,7 @@
The Postgresql :class:`.postgresql.ENUM` type will emit a
DROP TYPE instruction when a plain ``table.drop()`` is called,
assuming the object is not associated directly with a
- :class:`.MetaData` object. In order to accomodate the use case of
+ :class:`.MetaData` object. In order to accommodate the use case of
an enumerated type shared between multiple tables, the type should
be associated directly with the :class:`.MetaData` object; in this
case the type will only be created at the metadata level, or if