1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-29 13:02:27 +01:00

Rename the misspelled util.interruptableRange to util.interruptibleRange.

This commit is contained in:
Doug Kearns
2009-01-01 21:28:24 +11:00
parent eeca611435
commit cb5fca695f
4 changed files with 4 additions and 4 deletions

View File

@@ -551,7 +551,7 @@ const util = { //{{{
* @param {number} time The time in milliseconds between thread yields.
* @returns {Iterator(Object)}
*/
interruptableRange: function interruptableRange(start, end, time)
interruptibleRange: function interruptibleRange(start, end, time)
{
let endTime = Date.now() + time;
while (start < end)