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
test: Changing the string concatenation with string template
  • Loading branch information
narkedi committed Nov 10, 2017
commit 26794d35ab76548252aedb2fedbe8c58d8d7bc2c
2 changes: 1 addition & 1 deletion test/fixtures/print-10-lines.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE.

for (var i = 0; i < 10; i++) {
console.log('count ' + i);
console.log(`count ${i}`);
}