Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Use 'let' instead of 'const' in test
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaskiewicz committed Apr 22, 2018
1 parent 84c6d8e commit 180190d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/rules/prefer-while/good/test.ts.lint
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
for(const x = 1; x < 10; x++) {
for(let x = 1; x < 10; x++) {
console.log(x);
}

0 comments on commit 180190d

Please sign in to comment.