From: keeyip chan Date: Sun, 11 Sep 2016 17:29:29 +0000 (+0000) Subject: Fix typo in comment X-Git-Tag: rel_1_1_0~33^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e4f69d561d56ba2e4fe07a8115bfdcb7f3fb42e;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typo in comment --- diff --git a/lib/sqlalchemy/dialects/postgresql/array.py b/lib/sqlalchemy/dialects/postgresql/array.py index af8950ac6f..fe62eb101a 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)