summaryrefslogtreecommitdiff
path: root/threads.js
diff options
context:
space:
mode:
authorJens Mönig <jens@moenig.org>2015-06-25 15:37:55 +0200
committerJens Mönig <jens@moenig.org>2015-06-25 15:37:55 +0200
commitc8ef53f9a982514320af546b4cb95d069628cd65 (patch)
treebb66ff25f16be0ab5153ce51b24a9bbf1456db87 /threads.js
parent7c8dd2b4e89ca10168df128df80edc14a60fcf13 (diff)
parent2cbba6c762fc664bd4d4d0733c89192982d135d2 (diff)
downloadsnap-c8ef53f9a982514320af546b4cb95d069628cd65.tar.gz
snap-c8ef53f9a982514320af546b4cb95d069628cd65.zip
Merge pull request #805 from brollb/master
Fixed typo in Process definition
Diffstat (limited to 'threads.js')
-rw-r--r--threads.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/threads.js b/threads.js
index cd33a43..af899dc 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;