]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix typo in comment
authorkeeyip chan <keeyipchan@gmail.com>
Sun, 11 Sep 2016 17:29:29 +0000 (17:29 +0000)
committerkeeyip chan <keeyipchan@gmail.com>
Sun, 11 Sep 2016 17:29:29 +0000 (17:29 +0000)
lib/sqlalchemy/dialects/postgresql/array.py

index af8950ac6fc67ac74ac1133b122a11c2dafb25e6..fe62eb101ac3a5bbf1df9502ad94e43bde76f041 100644 (file)
@@ -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)