Skip to content

Commit

Permalink
Merge pull request #75 from kruppel/unmodified-typo
Browse files Browse the repository at this point in the history
s/unmodifed/unmodified/
  • Loading branch information
cpojer committed Dec 15, 2015
2 parents 79a76d8 + 33f63b9 commit 93366f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ $ jscodeshift -t myTransform.js src
Processing 10 files...
Spawning 2 workers with 5 files each...
All workers done.
Results: 0 errors 2 unmodifed 3 skipped 5 ok
Results: 0 errors 2 unmodified 3 skipped 5 ok
```

## The jscodeshift API
Expand Down
2 changes: 1 addition & 1 deletion src/Runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function showFileStats(fileStats) {
console.log(
'Results:',
clc.red(fileStats.error + ' errors'),
clc.yellow(fileStats.nochange + ' unmodifed'),
clc.yellow(fileStats.nochange + ' unmodified'),
clc.yellow(fileStats.skip + ' skipped'),
clc.green(fileStats.ok + ' ok')
);
Expand Down

0 comments on commit 93366f3

Please sign in to comment.