From b2d7f9e02f5510642c1610ca32e7a69206126918 Mon Sep 17 00:00:00 2001 From: David Majda Date: Sat, 11 Jun 2016 13:48:53 +0200 Subject: [PATCH] Fix comment typo --- lib/compiler/passes/generate-bytecode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compiler/passes/generate-bytecode.js b/lib/compiler/passes/generate-bytecode.js index 8aab0ae..32997f4 100644 --- a/lib/compiler/passes/generate-bytecode.js +++ b/lib/compiler/passes/generate-bytecode.js @@ -618,7 +618,7 @@ function generateBytecode(ast) { } else { /* * IE considers regexps /[]/ and /[^]/ as syntactically invalid, so we - * translate them into euqivalents it can handle. + * translate them into equivalents it can handle. */ regexp = node.inverted ? '/^[\\S\\s]/' : '/^(?!)/'; }