Fix typo, typof, typeof

This commit is contained in:
Ryan McGrath 2013-05-03 17:52:28 -04:00
parent b1617520cb
commit 31cf44b999
2 changed files with 2 additions and 2 deletions

View file

@ -293,7 +293,7 @@ exports.rmdirRecursive = function rmdirRecursive(dir, failSilent, clbk){
if(err && typeof failSilent === 'boolean' && !failSilent)
return clbk(err);
if(typof failSilent === 'function')
if(typeof failSilent === 'function')
clbk = failSilent;
(function rmFile(err){