Skip to content

Commit

Permalink
[FIX] err msg.
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed May 5, 2015
1 parent 470a2b4 commit d6239f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ module.exports = function( x, opts ) {
for ( i = 0; i < len; i++ ) {
v = clbk( x[ i ], i );
if ( typeof v !== 'number' ) {
throw new TypeError( 'signum()::invalid input argument. Must provide an array of number primitives. Value: `' + x + '`.' );
throw new TypeError( 'signum()::invalid input argument. Accessed array values must be number primitives. Value: `' + x + '`.' );
}
arr[ i ] = signum( v );
}
Expand Down

0 comments on commit d6239f9

Please sign in to comment.