Skip to content

Commit

Permalink
fix: Fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Oct 10, 2019
1 parent 8912d71 commit 2735533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plain-object/ensure.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module.exports = function (value/*, options*/) {
if (invalidKeys) {
errorMessage =
resolveErrorMessage(defaultErrorMessage, value, options) +
".\n Valuees for following keys are invalid: " +
".\n Values for following keys are invalid: " +
invalidKeys.join(", ");
throw new TypeError(errorMessage);
}
Expand Down

0 comments on commit 2735533

Please sign in to comment.