From c67a13b7bda166591a1b9f572e5113b31aa20f21 Mon Sep 17 00:00:00 2001 From: Brian Broll Date: Tue, 19 May 2015 15:48:17 -0500 Subject: Fixed typo in Process constructor Changed Process.prototype.contructor to Process.prototype.constructor --- threads.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/threads.js b/threads.js index 165ad0e..df67b2c 100644 --- a/threads.js +++ b/threads.js @@ -339,7 +339,7 @@ ThreadManager.prototype.findProcess = function (block) { */ Process.prototype = {}; -Process.prototype.contructor = Process; +Process.prototype.constructor = Process; Process.prototype.timeout = 500; // msecs after which to force yield Process.prototype.isCatchingErrors = true; -- cgit v1.3.1