Skip to content

Commit 215cf85

Browse files
committed
Trivial typo fix in an error message.
1 parent 3ee686e commit 215cf85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ module.exports = function (env_file, options) {
106106
}
107107
else {
108108
if (options.raise) {
109-
throw new TypeError("Environment file don't exist: " + env_file);
109+
throw new TypeError("Environment file doesn't exist: " + env_file);
110110
} else {
111111
if (options.verbose && module.exports.logger) {
112112
module.exports.logger.error('[ENV]: ERROR Environment file path could not be resolved:', env_file);

0 commit comments

Comments
 (0)