Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
deining committed Mar 5, 2024
1 parent 7974498 commit e7c1642
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/isDataView.js
Expand Up @@ -8,7 +8,7 @@ var isDataView = tagTester('DataView');
// In IE 10 - Edge 13, we need a different heuristic
// to determine whether an object is a `DataView`.
// Also, in cases where the native `DataView` is
// overriden we can't rely on the tag itself.
// overridden we can't rely on the tag itself.
function alternateIsDataView(obj) {
return obj != null && isFunction(obj.getInt8) && isArrayBuffer(obj.buffer);
}
Expand Down
2 changes: 1 addition & 1 deletion test/vendor/qunit.js
Expand Up @@ -4499,7 +4499,7 @@
// Exact case-insensitive match of the module name
QUnit.config.module = urlParams.module;

// Regular expression or case-insenstive substring match against "moduleName: testName"
// Regular expression or case-insensitive substring match against "moduleName: testName"
QUnit.config.filter = urlParams.filter;

// Test order randomization
Expand Down
2 changes: 1 addition & 1 deletion underscore-esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion underscore-node-f.cjs
Expand Up @@ -156,7 +156,7 @@ var isDataView = tagTester('DataView');
// In IE 10 - Edge 13, we need a different heuristic
// to determine whether an object is a `DataView`.
// Also, in cases where the native `DataView` is
// overriden we can't rely on the tag itself.
// overridden we can't rely on the tag itself.
function alternateIsDataView(obj) {
return obj != null && isFunction$1(obj.getInt8) && isArrayBuffer(obj.buffer);
}
Expand Down
2 changes: 1 addition & 1 deletion underscore-umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion underscore.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e7c1642

Please sign in to comment.