Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lahmatiy committed Feb 27, 2016
1 parent 70d3578 commit 47d7a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function showParseError(source, filename, details, message) {
var endLine = Math.min(line + 2, lines.length + 1);
var maxNumLength = Math.max(4, String(endLine).length) + 1;

console.error('\nParse error' + filename + ': ' + message);
console.error('\nParse error ' + filename + ': ' + message);
console.error(processLines(startLine - 1, line));
console.error(new Array(column + maxNumLength + 2).join('-') + '^');
console.error(processLines(line, endLine));
Expand Down

0 comments on commit 47d7a3a

Please sign in to comment.