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) if(err && typeof failSilent === 'boolean' && !failSilent)
return clbk(err); return clbk(err);
if(typof failSilent === 'function') if(typeof failSilent === 'function')
clbk = failSilent; clbk = failSilent;
(function rmFile(err){ (function rmFile(err){

View file

@ -1,7 +1,7 @@
{ {
"name": "wrench", "name": "wrench",
"description": "Recursive filesystem (and other) operations that Node *should* have.", "description": "Recursive filesystem (and other) operations that Node *should* have.",
"version": "1.5.0", "version": "1.5.1",
"author": "Ryan McGrath <ryan@venodesigns.net>", "author": "Ryan McGrath <ryan@venodesigns.net>",
"repository": { "repository": {