Skip to content
Closed
Changes from 1 commit
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
Next Next commit
Modified method console.log of loop.js;
  • Loading branch information
Anaweshak committed Nov 10, 2017
commit 1283137d02637e1a406316b43785eea051d1e7d2
2 changes: 1 addition & 1 deletion test/fixtures/loop.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ console.log('A message', 5);
while (t > 0) {
if (t++ === 1000) {
t = 0;
console.log('Outputed message #' + k++);
console.log(`Outputed message #${k++});
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missed closing back-tick ( ` ). Rest SGTM.

}
}
process.exit(55);