Skip to content

Commit 0dded1b

Browse files
committed
Auto-generated commit
1 parent c091869 commit 0dded1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

benchmark/benchmark.length.generic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function createBenchmark( len ) {
5858
}
5959
b.toc();
6060
if ( !isArray( arr ) ) {
61-
b.fail( 'should return a typed array' );
61+
b.fail( 'should return an array' );
6262
}
6363
b.pass( 'benchmark finished' );
6464
b.end();

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var gzeros = require( '@stdlib/array-base-zeros' );
3737
* @returns {(TypedArray|Array|ComplexArray)} array or typed array
3838
*
3939
* @example
40-
* var arr = zeros(2 );
40+
* var arr = zeros( 2 );
4141
* // returns <Float64Array>[ 0.0, 0.0 ]
4242
*
4343
* @example

0 commit comments

Comments
 (0)