diff options
author | Diana Clarke <diana.joan.clarke@gmail.com> | 2011-02-28 13:17:46 -0500 |
---|---|---|
committer | Diana Clarke <diana.joan.clarke@gmail.com> | 2011-02-28 13:17:46 -0500 |
commit | 13242f766eb5063a789937e2d56089207426dba0 (patch) | |
tree | 4a599c8e3ce5a887581bbe6b1fb178a696d38827 /lib/sqlalchemy/sql | |
parent | 62c545108d97ebe98731204b1de90e9abe2025b7 (diff) | |
download | sqlalchemy-13242f766eb5063a789937e2d56089207426dba0.tar.gz |
corrected a bunch of spelling typos
Diffstat (limited to 'lib/sqlalchemy/sql')
-rw-r--r-- | lib/sqlalchemy/sql/expression.py | 6 | ||||
-rw-r--r-- | lib/sqlalchemy/sql/util.py | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py index cd49ed167..afae611a6 100644 --- a/lib/sqlalchemy/sql/expression.py +++ b/lib/sqlalchemy/sql/expression.py @@ -865,7 +865,7 @@ def bindparam(key, value=None, type_=None, unique=False, required=False, callabl will be called at statement execution time to determine the ultimate value. Used for scenarios where the actual bind value cannot be determined at the point at which the clause - construct is created, but embeded bind values are still desirable. + construct is created, but embedded bind values are still desirable. :param type\_: A ``TypeEngine`` object that will be used to pre-process the @@ -2331,7 +2331,7 @@ class FromClause(Selectable): return fromclause in self._cloned_set def replace_selectable(self, old, alias): - """replace all occurences of FromClause 'old' with the given Alias + """replace all occurrences of FromClause 'old' with the given Alias object, returning a copy of this :class:`FromClause`. """ @@ -2671,7 +2671,7 @@ class Executable(_Generative): Note that the ORM makes use of its own "compiled" caches for some operations, including flush operations. The caching - used by the ORM internally supercedes a cache dictionary + used by the ORM internally supersedes a cache dictionary specified here. See also: diff --git a/lib/sqlalchemy/sql/util.py b/lib/sqlalchemy/sql/util.py index 331f74b7c..853ec9c5f 100644 --- a/lib/sqlalchemy/sql/util.py +++ b/lib/sqlalchemy/sql/util.py @@ -340,7 +340,7 @@ class Annotated(object): # detect immutable, don't change anything return self else: - # update the clone with any changes that have occured + # update the clone with any changes that have occurred # to this object's __dict__. clone.__dict__.update(self.__dict__) return Annotated(clone, self._annotations) |