diff options
| author | Brad Allen <bradallen137@gmail.com> | 2011-03-16 23:01:36 -0400 |
|---|---|---|
| committer | Brad Allen <bradallen137@gmail.com> | 2011-03-16 23:01:36 -0400 |
| commit | c280041477f385c5ddf1ed9587555aadc64346ce (patch) | |
| tree | 9bed17b3a248b4bb8ea30e3a5cc1088d2e519499 /lib/sqlalchemy/sql/visitors.py | |
| parent | b0af89284800af0f8c103b2ef8b2a94fda85bb4f (diff) | |
| download | sqlalchemy-c280041477f385c5ddf1ed9587555aadc64346ce.tar.gz | |
Tiny wording fix in a comment
Diffstat (limited to 'lib/sqlalchemy/sql/visitors.py')
| -rw-r--r-- | lib/sqlalchemy/sql/visitors.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/visitors.py b/lib/sqlalchemy/sql/visitors.py index 2480341c5..00d8f9485 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) |
