diff options
author | keeyip chan <keeyipchan@gmail.com> | 2016-09-11 17:29:29 +0000 |
---|---|---|
committer | keeyip chan <keeyipchan@gmail.com> | 2016-09-11 17:29:29 +0000 |
commit | 1e4f69d561d56ba2e4fe07a8115bfdcb7f3fb42e (patch) | |
tree | f664449c315119057ca902dd66b61ad5845764b4 /lib/sqlalchemy/dialects/postgresql/array.py | |
parent | ce62fa2eed1d93c9b6e383e48dcfaf5380b86915 (diff) | |
download | sqlalchemy-1e4f69d561d56ba2e4fe07a8115bfdcb7f3fb42e.tar.gz |
Fix typo in comment
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/array.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/array.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/array.py b/lib/sqlalchemy/dialects/postgresql/array.py index af8950ac6..fe62eb101 100644 --- a/lib/sqlalchemy/dialects/postgresql/array.py +++ b/lib/sqlalchemy/dialects/postgresql/array.py @@ -249,13 +249,13 @@ class ARRAY(SchemaEventTarget, sqltypes.ARRAY): return x == y def _set_parent(self, column): - """Support SchemaEentTarget""" + """Support SchemaEventTarget""" if isinstance(self.item_type, SchemaEventTarget): self.item_type._set_parent(column) def _set_parent_with_dispatch(self, parent): - """Support SchemaEentTarget""" + """Support SchemaEventTarget""" if isinstance(self.item_type, SchemaEventTarget): self.item_type._set_parent_with_dispatch(parent) |