diff options
| author | Brian Broll <brian.broll@vanderbilt.edu> | 2015-05-19 15:48:17 -0500 |
|---|---|---|
| committer | Brian Broll <brian.broll@vanderbilt.edu> | 2015-05-19 15:48:17 -0500 |
| commit | c67a13b7bda166591a1b9f572e5113b31aa20f21 (patch) | |
| tree | 0963e76ab8fdc832828af404f548cc015d51db07 | |
| parent | be938b5da76b3dd530a156ffdbe750535590aa28 (diff) | |
| download | snap-c67a13b7bda166591a1b9f572e5113b31aa20f21.tar.gz snap-c67a13b7bda166591a1b9f572e5113b31aa20f21.zip | |
Fixed typo in Process constructor
Changed Process.prototype.contructor to Process.prototype.constructor
| -rw-r--r-- | threads.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |
