summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/internal/repl/recoverable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/internal/repl/recoverable.js b/lib/internal/repl/recoverable.js
index bb5af0ec22..9d4fb11fa8 100644
--- a/lib/internal/repl/recoverable.js
+++ b/lib/internal/repl/recoverable.js
@@ -10,7 +10,7 @@ const { tokTypes: tt, Parser: AcornParser } = acorn;
function isRecoverableError(e, code) {
let recoverable = false;
- // Determine if the point of the any error raised is at the end of the input.
+ // Determine if the point of any error raised is at the end of the input.
// There are two cases to consider:
//
// 1. Any error raised after we have encountered the 'eof' token.