aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/compiler.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.rs b/src/compiler.rs
index 7b9fd9a..a3066b0 100644
--- a/src/compiler.rs
+++ b/src/compiler.rs
@@ -394,7 +394,7 @@ impl Compiler {
&mut self.frames[last]
}
- /// Marks a variable as read, also marks upvalues.
+ /// Marks a variable as read. Also marks upvalues.
fn mark_read(&mut self, frame_id: usize, var: &Variable) {
// Early out
if var.read {