summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Broll <brian.broll@vanderbilt.edu>2015-05-19 15:48:17 -0500
committerBrian Broll <brian.broll@vanderbilt.edu>2015-05-19 15:48:17 -0500
commitc67a13b7bda166591a1b9f572e5113b31aa20f21 (patch)
tree0963e76ab8fdc832828af404f548cc015d51db07
parentbe938b5da76b3dd530a156ffdbe750535590aa28 (diff)
downloadsnap-c67a13b7bda166591a1b9f572e5113b31aa20f21.tar.gz
snap-c67a13b7bda166591a1b9f572e5113b31aa20f21.zip
Fixed typo in Process constructor
Changed Process.prototype.contructor to Process.prototype.constructor
-rw-r--r--threads.js2
1 files changed, 1 insertions, 1 deletions
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;