Fix typo in ground.js

This commit is contained in:
Tony Garnock-Jones 2016-02-06 06:22:13 -05:00
parent 9a8e7b4856
commit 8c55ada827
1 changed files with 2 additions and 2 deletions

View File

@ -21,10 +21,10 @@ Ground.prototype.step = function () {
}; };
Ground.prototype.checkPid = function (pid) { Ground.prototype.checkPid = function (pid) {
if (pid !== -1) console.error('Weird pid in Ground markPidRunnable', pid); if (pid !== -1) console.error('Weird pid in Ground', pid);
}; };
Ground.prototype.markPidRunnable = function (pid) { Ground.prototype.markRunnable = function (pid) {
this.checkPid(pid); this.checkPid(pid);
this.startStepping(); this.startStepping();
}; };