Skip to content

Commit 8a41321

Browse files
committed
Fix error message
1 parent 94b8810 commit 8a41321

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/strided/base/binary-dtype-signatures/lib

lib/node_modules/@stdlib/strided/base/binary-dtype-signatures/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function resolve( dtypes ) {
9494
for ( i = 0; i < dtypes.length; i++ ) {
9595
dt = resolveStr( dtypes[ i ] );
9696
if ( dt === null ) {
97-
return new TypeError( format( 'invalid argument. Must provided recognized data types. Unable to resolve a data type string. Value: `%s`.', dtypes[ i ] ) );
97+
return new TypeError( format( 'invalid argument. Must provide recognized data types. Unable to resolve a data type string. Value: `%s`.', dtypes[ i ] ) );
9898
}
9999
out.push( dt );
100100
}

0 commit comments

Comments
 (0)