From 27d8ee04bb4fe4e9ebc3325c2ab9e0c8311f03de Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 5 Nov 2010 18:39:06 +1100 Subject: [PATCH] Whitespace fixes. --HG-- extra : rebase_source : 767c3a15afc7917a5f6585417c8edcd45b67f0b1 --- common/content/hints.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/hints.js b/common/content/hints.js index becaadbc..18531de8 100644 --- a/common/content/hints.js +++ b/common/content/hints.js @@ -1046,11 +1046,11 @@ const Hints = Module("hints", { [0xff21, 0xff3a, "A"], [0xff41, 0xff5a, "a"] ].forEach(function (start, stop, val) { if (typeof val != "string") - for (let i=start; i <= stop; i++) + for (let i = start; i <= stop; i++) table[String.fromCharCode(i)] = val[(i - start) % val.length]; else { let n = val.charCodeAt(0); - for (let i=start; i <= stop; i++) + for (let i = start; i <= stop; i++) table[String.fromCharCode(i)] = String.fromCharCode(n + i - start); } });