Skip to content

Commit

Permalink
Fix: Correct error message in stem accessor
Browse files Browse the repository at this point in the history
  • Loading branch information
dkim-95112 authored and phated committed Sep 27, 2016
1 parent 23219a8 commit 3e04607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Object.defineProperty(File.prototype, 'stem', {
},
set: function(stem) {
if (!this.path) {
throw new Error('No PassThrough specified! Can not set stem.');
throw new Error('No path specified! Can not set stem.');
}
this.path = path.join(path.dirname(this.path), stem + this.extname);
},
Expand Down

0 comments on commit 3e04607

Please sign in to comment.