]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Tiny wording fix in a comment
authorBrad Allen <bradallen137@gmail.com>
Thu, 17 Mar 2011 03:01:36 +0000 (23:01 -0400)
committerBrad Allen <bradallen137@gmail.com>
Thu, 17 Mar 2011 03:01:36 +0000 (23:01 -0400)
lib/sqlalchemy/sql/visitors.py

index 2480341c560c2cdeca8e74eca19e6b579f3a9d26..00d8f94854e88136fffd815465b7c313a73e3674 100644 (file)
@@ -65,8 +65,8 @@ def _generate_dispatch(cls):
         visit_name = cls.__visit_name__
         if isinstance(visit_name, str):
             # There is an optimization opportunity here because the
-            # the string name of is known at this early stage (import time)
-            # so it can be pre-constructed.
+            # the string name of the class's __visit_name__ is known at
+            # this early stage (import time) so it can be pre-constructed.
             getter = operator.attrgetter("visit_%s" % visit_name)
             def _compiler_dispatch(self, visitor, **kw):
                 return getter(visitor)(self, **kw)