1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 09:48:00 +01:00

use let when declaring loop variables

This commit is contained in:
Doug Kearns
2008-09-18 12:07:10 +00:00
parent 65f1b0d53f
commit e64a7397df
18 changed files with 186 additions and 186 deletions

View File

@@ -187,7 +187,7 @@ liberator.modes = (function () //{{{
{
var modes = this.all;
for (var i = 0; i < modes.length; i++)
for (let i = 0; i < modes.length; i++)
yield modes[i];
},