Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
Signed-off-by: Tj Holowaychuk <tj@vision-media.ca>
  • Loading branch information
eirikurn authored and tj committed Mar 30, 2011
1 parent 2b89953 commit 70d5b89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugins/reload.js
Expand Up @@ -102,7 +102,7 @@ exports = module.exports = function(files, options){

// watch file for changes
function watch(file) {
if (!~extensions.indexOf(extname(file)) return;
if (!~extensions.indexOf(extname(file))) return;
fs.watchFile(file, { interval: interval }, function(curr, prev){
if (restarting) return;
if (curr.mtime > prev.mtime) {
Expand Down

0 comments on commit 70d5b89

Please sign in to comment.