From afb321524bdbf46c52441e3e0960725ef8126761 Mon Sep 17 00:00:00 2001 From: Charles Cooper Date: Sun, 7 Jan 2024 13:00:34 -0500 Subject: [PATCH] clarify a comment --- vyper/ast/parse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vyper/ast/parse.py b/vyper/ast/parse.py index 31977ca52b..b657cf2245 100644 --- a/vyper/ast/parse.py +++ b/vyper/ast/parse.py @@ -240,8 +240,8 @@ def visit_For(self, node): try: annotation = python_ast.parse(raw_annotation, mode="eval") - # enhance the Python AST tree with token and source code information, specifically the - # `first_token` and `last_token` attributes that are accessed in `generic_visit`. + # annotate with token and source code information. `first_token` + # and `last_token` attributes are accessed in `generic_visit`. tokens = asttokens.ASTTokens(raw_annotation) tokens.mark_tokens(annotation) except SyntaxError as e: