| Index: src/interpreter/bytecode-generator.cc
|
| diff --git a/src/interpreter/bytecode-generator.cc b/src/interpreter/bytecode-generator.cc
|
| index 02061a75145486fe8dd6b86310151329b7be91d0..3236a37766dd757f634a8f5ff05439619f3dff4e 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;
|
| }
|
|
|
|
|