summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-03-11 22:05:09 -0800
committerRyan Dahl <ry@tinyclouds.org>2010-03-11 22:05:09 -0800
commitc96b7e5ca05b7ca3b34b45deb01ac0498cb201c6 (patch)
tree0bf436b68be4cf9bbd5eb7caa058921515c908fe
parentdd857f9fdfa9bb2dcd71500173bd203aa2dd588b (diff)
downloadnode-c96b7e5ca05b7ca3b34b45deb01ac0498cb201c6.tar.gz
Missing EOL semicolons
-rw-r--r--src/node.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node.js b/src/node.js
index ccd1b5679..f55ad3c54 100644
--- a/src/node.js
+++ b/src/node.js
@@ -502,7 +502,7 @@ function findModulePath (id, dirs, callback) {
} else {
return searchLocations();
}
- })
+ });
// if sync
} else {
@@ -815,4 +815,4 @@ process.loop();
process.emit("exit");
-})
+});