summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql
diff options
context:
space:
mode:
authorPriit Laes <plaes@plaes.org>2014-12-19 18:46:16 +0200
committerPriit Laes <plaes@plaes.org>2014-12-19 19:32:27 +0200
commit8ae47dc6e0a98b359247040236be0810b9086f40 (patch)
tree85179b7521aeea073ff0c9c9c0e20ecbca84032c /lib/sqlalchemy/sql
parentd1ac6cb33af3b105db7cdb51411e10ac3bafff1f (diff)
downloadsqlalchemy-8ae47dc6e0a98b359247040236be0810b9086f40.tar.gz
Maul the evaulate & friends typo
Diffstat (limited to 'lib/sqlalchemy/sql')
-rw-r--r--lib/sqlalchemy/sql/dml.py2
-rw-r--r--lib/sqlalchemy/sql/elements.py2
-rw-r--r--lib/sqlalchemy/sql/operators.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/sql/dml.py b/lib/sqlalchemy/sql/dml.py
index 9f2ce7ce3..62169319b 100644
--- a/lib/sqlalchemy/sql/dml.py
+++ b/lib/sqlalchemy/sql/dml.py
@@ -387,7 +387,7 @@ class ValuesBase(UpdateBase):
:func:`.mapper`.
:param cols: optional list of column key names or :class:`.Column`
- objects. If omitted, all column expressions evaulated on the server
+ objects. If omitted, all column expressions evaluated on the server
are added to the returning list.
.. versionadded:: 0.9.0
diff --git a/lib/sqlalchemy/sql/elements.py b/lib/sqlalchemy/sql/elements.py
index 30965c801..0d49041c7 100644
--- a/lib/sqlalchemy/sql/elements.py
+++ b/lib/sqlalchemy/sql/elements.py
@@ -2146,7 +2146,7 @@ class Case(ColumnElement):
result of the ``CASE`` construct if all expressions within
:paramref:`.case.whens` evaluate to false. When omitted, most
databases will produce a result of NULL if none of the "when"
- expressions evaulate to true.
+ expressions evaluate to true.
"""
diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py
index b08e44ab8..a328b023e 100644
--- a/lib/sqlalchemy/sql/operators.py
+++ b/lib/sqlalchemy/sql/operators.py
@@ -137,7 +137,7 @@ class Operators(object):
.. versionadded:: 0.8 - added the 'precedence' argument.
:param is_comparison: if True, the operator will be considered as a
- "comparison" operator, that is which evaulates to a boolean
+ "comparison" operator, that is which evaluates to a boolean
true/false value, like ``==``, ``>``, etc. This flag should be set
so that ORM relationships can establish that the operator is a
comparison operator when used in a custom join condition.