From: Brad Allen Date: Thu, 17 Mar 2011 03:01:36 +0000 (-0400) Subject: Tiny wording fix in a comment X-Git-Tag: rel_0_7_6~14^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c280041477f385c5ddf1ed9587555aadc64346ce;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Tiny wording fix in a comment --- diff --git a/lib/sqlalchemy/sql/visitors.py b/lib/sqlalchemy/sql/visitors.py index 2480341c56..00d8f94854 100644 --- a/lib/sqlalchemy/sql/visitors.py +++ b/lib/sqlalchemy/sql/visitors.py @@ -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)