From 048b977d8e5cede2259df69fc7c0bbfedd84100d Mon Sep 17 00:00:00 2001 From: MaleDong Date: Sun, 10 Feb 2019 19:57:52 +0800 Subject: [PATCH] lib: fix the typo error Fix a typo error ('the' before 'any'). PR-URL: https://github.com/nodejs/node/pull/26032 Reviewed-By: Luigi Pinca Reviewed-By: Richard Lau Reviewed-By: Sakthipriyan Vairamani Reviewed-By: Beth Griggs Reviewed-By: Michael Dawson Reviewed-By: Lance Ball Reviewed-By: Anto Aravinth Reviewed-By: James M Snell --- lib/internal/repl/recoverable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/repl/recoverable.js b/lib/internal/repl/recoverable.js index bb5af0ec225aa1..9d4fb11fa87733 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.