From 4b3f26bed5c60ba192b74c7a889585c095c3c09e Mon Sep 17 00:00:00 2001 From: Ben Hardill Date: Sat, 30 Nov 2013 18:08:44 +0000 Subject: [PATCH] Fix milliseconds in delay --- nodes/core/core/89-delay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/core/core/89-delay.js b/nodes/core/core/89-delay.js index 3f50afbce..95b370913 100644 --- a/nodes/core/core/89-delay.js +++ b/nodes/core/core/89-delay.js @@ -41,7 +41,7 @@ function DelayNode(n) { this.rateUnits = n.rateUnits; if (n.timeoutUnits === "milliseconds") { - this.timeout = n.timout; + this.timeout = n.timeout; } else if (n.timeoutUnits === "seconds") { this.timeout = n.timeout * 1000; } else if (n.timeoutUnits === "minutes") {