diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2016-08-08 16:39:15 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2016-08-08 16:39:15 +0300 |
commit | fd164a6c849289b81f29059dda822c3d5902e40e (patch) | |
tree | 3c4a3af786c47c960b73c62c8c4c2373c6048a60 /lib/sqlalchemy | |
parent | f2fa9d000b44a54b0fd3ae6114eb5d53ef20c3b8 (diff) | |
download | sqlalchemy-pr/299.tar.gz |
Spelling fixespr/299
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r-- | lib/sqlalchemy/dialects/mssql/base.py | 2 | ||||
-rw-r--r-- | lib/sqlalchemy/dialects/oracle/base.py | 2 | ||||
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/array.py | 4 | ||||
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/pg8000.py | 2 | ||||
-rw-r--r-- | lib/sqlalchemy/orm/events.py | 2 | ||||
-rw-r--r-- | lib/sqlalchemy/sql/schema.py | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/lib/sqlalchemy/dialects/mssql/base.py b/lib/sqlalchemy/dialects/mssql/base.py index d1c7452a1..20b812731 100644 --- a/lib/sqlalchemy/dialects/mssql/base.py +++ b/lib/sqlalchemy/dialects/mssql/base.py @@ -164,7 +164,7 @@ how SQLAlchemy handles this: This -is an auxilliary use case suitable for testing and bulk insert scenarios. +is an auxiliary use case suitable for testing and bulk insert scenarios. MAX on VARCHAR / NVARCHAR ------------------------- diff --git a/lib/sqlalchemy/dialects/oracle/base.py b/lib/sqlalchemy/dialects/oracle/base.py index a68e2d7ca..609a1da56 100644 --- a/lib/sqlalchemy/dialects/oracle/base.py +++ b/lib/sqlalchemy/dialects/oracle/base.py @@ -754,7 +754,7 @@ class OracleCompiler(compiler.SQLCompiler): limitselect._oracle_visit = True limitselect._is_wrapper = True - # add expressions to accomodate FOR UPDATE OF + # add expressions to accommodate FOR UPDATE OF for_update = select._for_update_arg if for_update is not None and for_update.of: for_update = for_update._clone() diff --git a/lib/sqlalchemy/dialects/postgresql/array.py b/lib/sqlalchemy/dialects/postgresql/array.py index 8d811aa55..af8950ac6 100644 --- a/lib/sqlalchemy/dialects/postgresql/array.py +++ b/lib/sqlalchemy/dialects/postgresql/array.py @@ -19,7 +19,7 @@ except ImportError: def Any(other, arrexpr, operator=operators.eq): """A synonym for the :meth:`.ARRAY.Comparator.any` method. - This method is legacy and is here for backwards-compatiblity. + This method is legacy and is here for backwards-compatibility. .. seealso:: @@ -33,7 +33,7 @@ def Any(other, arrexpr, operator=operators.eq): def All(other, arrexpr, operator=operators.eq): """A synonym for the :meth:`.ARRAY.Comparator.all` method. - This method is legacy and is here for backwards-compatiblity. + This method is legacy and is here for backwards-compatibility. .. seealso:: diff --git a/lib/sqlalchemy/dialects/postgresql/pg8000.py b/lib/sqlalchemy/dialects/postgresql/pg8000.py index 9daab5851..34d11afe5 100644 --- a/lib/sqlalchemy/dialects/postgresql/pg8000.py +++ b/lib/sqlalchemy/dialects/postgresql/pg8000.py @@ -28,7 +28,7 @@ Typically, this can be changed to ``utf-8``, as a more useful default:: # encoding client_encoding = utf8 -The ``client_encoding`` can be overriden for a session by executing the SQL: +The ``client_encoding`` can be overridden for a session by executing the SQL: SET CLIENT_ENCODING TO 'utf8'; diff --git a/lib/sqlalchemy/orm/events.py b/lib/sqlalchemy/orm/events.py index fa0d84f31..e487dd88d 100644 --- a/lib/sqlalchemy/orm/events.py +++ b/lib/sqlalchemy/orm/events.py @@ -1629,7 +1629,7 @@ class SessionEvents(event.Events): """ def loaded_as_persistent(self, session, instance): - """Intercept the "loaded as peristent" transition for a specific object. + """Intercept the "loaded as persistent" transition for a specific object. This event is invoked within the ORM loading process, and is invoked very similarly to the :meth:`.InstanceEvents.load` event. However, diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py index 457259d61..e364b2e7f 100644 --- a/lib/sqlalchemy/sql/schema.py +++ b/lib/sqlalchemy/sql/schema.py @@ -980,7 +980,7 @@ class Column(SchemaItem, ColumnClause): * Part of the primary key - * Not refering to another column via :class:`.ForeignKey`, unless + * Not referring to another column via :class:`.ForeignKey`, unless the value is specified as ``'ignore_fk'``:: # turn on autoincrement for this column despite |