Skip to content

Commit 94b8810

Browse files
committed
Fix error message and package meta data
1 parent 0b1a881 commit 94b8810

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

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

lib/node_modules/@stdlib/strided/base/unary-dtype-signatures/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "@stdlib/strided/base/binary-dtype-signatures",
2+
"name": "@stdlib/strided/base/unary-dtype-signatures",
33
"version": "0.0.0",
4-
"description": "Generate a list of binary interface signatures from strided array data types.",
4+
"description": "Generate a list of unary interface signatures from strided array data types.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)