summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql
diff options
context:
space:
mode:
authorMin ho Kim <minho42@gmail.com>2019-07-21 10:51:29 +1000
committerMin ho Kim <minho42@gmail.com>2019-07-21 10:51:29 +1000
commit7e588aadaab27a53b226a4637be9b4022ab46956 (patch)
tree9a38b84206b3ada32b2b8e9a53ec68515438a8a9 /lib/sqlalchemy/sql
parent463c488d8e52725d1bf48229a9110b850a70418b (diff)
downloadsqlalchemy-7e588aadaab27a53b226a4637be9b4022ab46956.tar.gz
Fix typos
Diffstat (limited to 'lib/sqlalchemy/sql')
-rw-r--r--lib/sqlalchemy/sql/compiler.py2
-rw-r--r--lib/sqlalchemy/sql/schema.py2
-rw-r--r--lib/sqlalchemy/sql/selectable.py2
-rw-r--r--lib/sqlalchemy/sql/sqltypes.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py
index 740abeb3d..400ac2749 100644
--- a/lib/sqlalchemy/sql/compiler.py
+++ b/lib/sqlalchemy/sql/compiler.py
@@ -3498,7 +3498,7 @@ class IdentifierPreparer(object):
"""keyword sequence filter.
a filter for elements that are intended to represent keyword sequences,
- such as "INITIALLY", "INTIALLY DEFERRED", etc. no special characters
+ such as "INITIALLY", "INITIALLY DEFERRED", etc. no special characters
should be present.
.. versionadded:: 1.3
diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py
index 23c58dc4e..c84e3ee21 100644
--- a/lib/sqlalchemy/sql/schema.py
+++ b/lib/sqlalchemy/sql/schema.py
@@ -3777,7 +3777,7 @@ class MetaData(SchemaItem):
.. note::
- As refered above, the :paramref:`.MetaData.schema` parameter
+ As referred above, the :paramref:`.MetaData.schema` parameter
only refers to the **default value** that will be applied to
the :paramref:`.Table.schema` parameter of an incoming
:class:`.Table` object. It does not refer to how the
diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py
index 10643c9e4..03dbcd449 100644
--- a/lib/sqlalchemy/sql/selectable.py
+++ b/lib/sqlalchemy/sql/selectable.py
@@ -2976,7 +2976,7 @@ class CompoundSelect(GenerativeSelect):
For a :class:`.CompoundSelect`, the
:attr:`.CompoundSelect.selected_columns` attribute returns the selected
- columns of the first SELECT statement contined within the series of
+ columns of the first SELECT statement contained within the series of
statements within the set operation.
.. versionadded:: 1.4
diff --git a/lib/sqlalchemy/sql/sqltypes.py b/lib/sqlalchemy/sql/sqltypes.py
index 7c7f2ac52..38731fcbe 100644
--- a/lib/sqlalchemy/sql/sqltypes.py
+++ b/lib/sqlalchemy/sql/sqltypes.py
@@ -48,7 +48,7 @@ class _LookupExpressionAdapter(object):
"""Mixin expression adaptations based on lookup tables.
- These rules are currenly used by the numeric, integer and date types
+ These rules are currently used by the numeric, integer and date types
which have detailed cross-expression coercion rules.
"""