Index: src/interpreter/bytecode-generator.cc |
diff --git a/src/interpreter/bytecode-generator.cc b/src/interpreter/bytecode-generator.cc |
index 0e74afca9adf44448b106904642bf98a2aabcdff..846c82ecb69ff7d548e475b763b1afb396b87033 100644 |
--- a/src/interpreter/bytecode-generator.cc |
+++ b/src/interpreter/bytecode-generator.cc |
@@ -658,7 +658,7 @@ void BytecodeGenerator::VisitWhileStatement(WhileStatement* stmt) { |
BytecodeLabel body_label, condition_label, done_label; |
if (stmt->cond()->ToBooleanIsFalse()) { |
- // If the condition is false there is no need to generating the loop. |
+ // If the condition is false there is no need to generate the loop. |
return; |
} |