Skip to content

Commit

Permalink
fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
jesselpalmer committed Nov 1, 2023
1 parent a1a1d6a commit ed2ec49
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/exec_program/validators/line_validator.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ export class LineValidator {
let isLineValid = true;

if (isNaN(parseInt(lineNumberStr, radix))) {
console.log(`INVALID: Line number is not a valid number ${lineNumberStr}`);
console.log(`
INVALID: Line number is not a valid number ${lineNumberStr}
`);
isLineValid = false;
}

Expand Down

0 comments on commit ed2ec49

Please sign in to comment.