Skip to content

Commit 0a68e29

Browse files
committed
spelling: options
1 parent 805f4b0 commit 0a68e29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/ErrorHelpers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ exports.cutOffByFlag = (stack, flag) => {
1818
exports.cutOffLoaderExecution = stack =>
1919
exports.cutOffByFlag(stack, loaderFlag);
2020

21-
exports.cutOffWebpackOptinos = stack =>
21+
exports.cutOffWebpackOptions = stack =>
2222
exports.cutOffByFlag(stack, webpackOptionsFlag);
2323

2424
exports.cutOffMultilineMessage = (stack, message) => {
@@ -51,7 +51,7 @@ exports.cleanUp = (stack, message) => {
5151
};
5252

5353
exports.cleanUpWebpackOptions = (stack, message) => {
54-
stack = exports.cutOffWebpackOptinos(stack);
54+
stack = exports.cutOffWebpackOptions(stack);
5555
stack = exports.cutOffMultilineMessage(stack, message);
5656
return stack;
5757
};

0 commit comments

Comments
 (0)