diff --git a/src/compiler.rs b/src/compiler.rs index 509c5b9..22b7bd3 100644 --- a/src/compiler.rs +++ b/src/compiler.rs @@ -172,7 +172,7 @@ impl StmtVisitor for LocalAssignCollector { // we visit the block statement because even though it goes below the current "local" // scope, we're ultimately trying to get a list of ALL local names that are assigned to in // this scope. - // FIXME BUG this does create some weirdness, for example take this: + // TODO FIXME BUG this does create some weirdness, for example take this: // outer_function = () { // some_value = 1234 // inner_function = () {