summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql
diff options
context:
space:
mode:
authorjonathan vanasco <jonathan@2xlp.com>2015-12-16 11:12:07 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2015-12-16 11:47:39 -0500
commitfe17ed136b890e27d878433b41476c4d89a46808 (patch)
treea0747fe3ac9e965ecba8164eaf1fcff338d32d03 /lib/sqlalchemy/sql
parenta51a7d7ca5fb4bf73db272f1a30ee044f7cf4726 (diff)
downloadsqlalchemy-fe17ed136b890e27d878433b41476c4d89a46808.tar.gz
some spelling fixes
(cherry picked from commit 738d515b95f1ff94d7dfd265883237d247d1c153)
Diffstat (limited to 'lib/sqlalchemy/sql')
-rw-r--r--lib/sqlalchemy/sql/dml.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/sql/dml.py b/lib/sqlalchemy/sql/dml.py
index 22c534153..ddda109f6 100644
--- a/lib/sqlalchemy/sql/dml.py
+++ b/lib/sqlalchemy/sql/dml.py
@@ -269,8 +269,8 @@ class ValuesBase(UpdateBase):
It is essential to note that **passing multiple values is
NOT the same as using traditional executemany() form**. The above
syntax is a **special** syntax not typically used. To emit an
- INSERT statement against mutliple rows, the normal method is
- to pass a mutiple values list to the :meth:`.Connection.execute`
+ INSERT statement against multiple rows, the normal method is
+ to pass a multiple values list to the :meth:`.Connection.execute`
method, which is supported by all database backends and is generally
more efficient for a very large number of parameters.
@@ -403,7 +403,7 @@ class ValuesBase(UpdateBase):
SELECT, multi-valued VALUES clause),
:meth:`.ValuesBase.return_defaults` is intended only for an
"ORM-style" single-row INSERT/UPDATE statement. The row returned
- by the statement is also consumed implcitly when
+ by the statement is also consumed implicitly when
:meth:`.ValuesBase.return_defaults` is used. By contrast,
:meth:`.UpdateBase.returning` leaves the RETURNING result-set
intact with a collection of any number of rows.