Skip to content

Commit f750e12

Browse files
committed
chore: fix typo
1 parent bea073a commit f750e12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/object/assign/test/test.builtin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var assign = require( './../lib/builtin.js' );
3131
var opts = {
3232
'skip': ( typeof Object.assign === 'undefined' ) // eslint-disable-line node/no-unsupported-features/es-builtins
3333
};
34-
var optsSymbool = {
34+
var optsSymbol = {
3535
'skip': opts.skip || !hasSymbolSupport()
3636
};
3737

@@ -107,7 +107,7 @@ tape( 'the function assigns enumerable own properties of one or more source obje
107107
t.end();
108108
});
109109

110-
tape( 'the function copies symbol-typed properties', optsSymbool, function test( t ) {
110+
tape( 'the function copies symbol-typed properties', optsSymbol, function test( t ) {
111111
var expected;
112112
var obj1;
113113
var obj2;

0 commit comments

Comments
 (0)