From c96b7e5ca05b7ca3b34b45deb01ac0498cb201c6 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 11 Mar 2010 22:05:09 -0800 Subject: [PATCH] Missing EOL semicolons --- src/node.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node.js b/src/node.js index ccd1b5679f4..f55ad3c543e 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"); -}) +});