From 261709497fc09ed7ecb1aac5778b8a0f4c78aa0f Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Mon, 24 Feb 2025 22:44:45 +0100 Subject: [PATCH] fix:slow --- idlecycles/chapter3.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/idlecycles/chapter3.html b/idlecycles/chapter3.html index a189403..525dbdf 100644 --- a/idlecycles/chapter3.html +++ b/idlecycles/chapter3.html @@ -190,9 +190,8 @@

Pattern as a class

Pattern.prototype.fast = function (factor) { return fast(factor, this); }; - Pattern.prototype.slow = function (factor) { - return slow(factor, this); + return fast(1 / factor, this); }; codeblock(document.currentScript, 6);