Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
lib: fix the typo error
Fix a typo error ('the' before 'any').
  • Loading branch information
MaleDong committed Feb 10, 2019
commit f42e618fab12a2d60f6e7aab622e76178e800e08
2 changes: 1 addition & 1 deletion lib/internal/repl/recoverable.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down