Skip to content

Commit 322365b

Browse files
committed
fix: lint error
1 parent 31aad5b commit 322365b

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/concat1d/docs/types

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/concat1d/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ interface Concat1d {
8989
* var y = array( [ -5.0, 6.0, -7.0, -8.0, 9.0, -10.0 ] );
9090
* var z = empty( [ 10 ] );
9191
*
92-
* var out = concat1d.assign( [ x, y, z ] );
92+
* var out = concat1d.assign( [ x, y ], z );
9393
* // returns <ndarray>
9494
*
9595
* var bool = ( out === z );
@@ -157,7 +157,7 @@ interface Concat1d {
157157
* var y = array( [ -5.0, 6.0, -7.0, -8.0, 9.0, -10.0 ] );
158158
* var z = empty( [ 10 ] );
159159
*
160-
* var out = concat1d.assign( [ x, y, z ] );
160+
* var out = concat1d.assign( [ x, y ], z );
161161
* // returns <ndarray>
162162
*
163163
* var bool = ( out === z );

0 commit comments

Comments
 (0)