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

prefer let over var in Mappings, Modes, and Options

This commit is contained in:
Doug Kearns
2008-12-21 00:28:19 +11:00
parent 29817b5d72
commit 5b4a1d11f8
4 changed files with 27 additions and 27 deletions

View File

@@ -810,7 +810,7 @@ function CommandLine() //{{{
command.description,
function (args)
{
var str = echoArgumentToString(args.string, true);
let str = echoArgumentToString(args.string, true);
if (str != null)
command.action(str);
},