remove whitespace
authorRyan Dahl <ry@tinyclouds.org>
Mon, 15 Mar 2010 16:02:52 +0000 (09:02 -0700)
committerRyan Dahl <ry@tinyclouds.org>
Mon, 15 Mar 2010 16:02:52 +0000 (09:02 -0700)
src/node.js

index e2bf8b8aabaa3a9d0b1b0dc5b91257e100422e32..6eb737267db95f924abbc11ee0139fc578ca2288 100644 (file)
@@ -42,7 +42,7 @@ node.dns.createConnection = removed("node.dns.createConnection() has moved. Use
 
 /**********************************************************************/
 
-// Module 
+// Module
 
 var internalModuleCache = {};
 var extensionCache = {};
@@ -351,7 +351,7 @@ process.fs.readFile = function (path, encoding_, callback) {
   var callback = (typeof(callback_) == 'function' ? callback_ : null);
   process.fs.open(path, process.O_RDONLY, 0666, function (err, fd) {
     if (err) {
-      if (callback) callback(err); 
+      if (callback) callback(err);
     } else {
       readAll(fd, 0, "", encoding, callback);
     }