From 806a44e3c386da322a25846fc447e5439c37d319 Mon Sep 17 00:00:00 2001 From: "Bernardo F. Domingues" Date: Fri, 6 Sep 2013 11:39:28 -0300 Subject: [PATCH] Renaming "url" to "path" for clarity reasons --- src/node.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node.js b/src/node.js index c3d1ec48..962b36ba 100644 --- a/src/node.js +++ b/src/node.js @@ -57,9 +57,9 @@ } /** @private */ - function request_fs(url, callback){ + function request_fs(path, callback){ var fs = require('fs'); - fs.readFile(url, function (err, data) { + fs.readFile(path, function (err, data) { if (err) { fabric.log(err); throw err;