Skip to content
This repository has been archived by the owner on Jun 19, 2019. It is now read-only.

Commit

Permalink
Fix typo, typof, typeof
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan McGrath committed May 3, 2013
1 parent b161752 commit 31cf44b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/wrench.js
Original file line number Diff line number Diff line change
Expand Up @@ -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){
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wrench",
"description": "Recursive filesystem (and other) operations that Node *should* have.",
"version": "1.5.0",
"version": "1.5.1",
"author": "Ryan McGrath <[email protected]>",

"repository": {
Expand Down

0 comments on commit 31cf44b

Please sign in to comment.