Browse Source

Fix a typo in a bytecode_to_tree comment

jonathanvdc 8 years ago
parent
commit
afdcc42c4c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      kernel/modelverse_jit/bytecode_to_tree.py

+ 1 - 1
kernel/modelverse_jit/bytecode_to_tree.py

@@ -500,7 +500,7 @@ class AnalysisState(object):
         # lines of:
         #
         #     _globals, = yield [("RD", [task_root, "globals"])]
-        #     global_var = yield [("RD", [_globals, var_name])]
+        #     global_var, = yield [("RD", [_globals, var_name])]
         #
         #     if global_var is None:
         #         global_var, = yield [("CN", [])]