1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 22:07:58 +01:00

Missing semicolon.

This commit is contained in:
Doug Kearns
2009-07-23 00:34:19 +10:00
parent 8db6944017
commit c82140ca51

View File

@@ -191,7 +191,7 @@ const util = { //{{{
memoize: function memoize(obj, key, getter)
{
obj.__defineGetter__(key, function () {
delete obj[key]
delete obj[key];
obj[key] = getter(obj, key);
return obj[key];
});