Skip to content

Commit daaa882

Browse files
committed
Auto-generated commit
1 parent f1fa422 commit daaa882

File tree

13 files changed

+24
-18
lines changed

13 files changed

+24
-18
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,8 @@ A total of 32 issues were closed in this release:
247247

248248
<details>
249249

250+
- [`5acfd64`](https://github.com/stdlib-js/stdlib/commit/5acfd64326637640433a7e3ffc5d101db23ab1d8) - **docs:** fix example code _(by Philipp Burckhardt)_
251+
- [`4f3789b`](https://github.com/stdlib-js/stdlib/commit/4f3789b25e01908dab6c31b910573b73e5709ac5) - **docs:** fix example code _(by Philipp Burckhardt)_
250252
- [`cedc9bb`](https://github.com/stdlib-js/stdlib/commit/cedc9bb0f92c950200128079cac8ab1da99ec7ed) - **docs:** fix example code _(by Philipp Burckhardt)_
251253
- [`b066b48`](https://github.com/stdlib-js/stdlib/commit/b066b488b56954ec0761d625f3b0f820a65ff94c) - **feat:** add missing functions to namespace _(by Philipp Burckhardt)_
252254
- [`8cea287`](https://github.com/stdlib-js/stdlib/commit/8cea2870cc30848a616b76259b3274caae387b10) - **docs:** fix return annotation values _(by Philipp Burckhardt)_

base/assert/is-accessor-array/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/array/base/assert/is-accessor-array
2525
*
2626
* @example
27-
* var Complex128Array = require( '@stdlib/array/complex128array' );
27+
* var Complex128Array = require( '@stdlib/array/complex128' );
2828
* var isAccessorArray = require( '@stdlib/array/base/assert/is-accessor-array' );
2929
*
3030
* var bool = isAccessorArray( new Complex128Array( 10 ) );

base/broadcasted-ternary4d/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@
4141
* var z = ones4d( shapes[ 2 ] );
4242
* var out = zeros4d( shapes[ 3 ] );
4343
*
44-
* bternary3d( [ x, y, z, out ], shapes, add );
44+
* bternary4d( [ x, y, z, out ], shapes, add );
4545
*
4646
* console.log( out );
47-
* // => [ [ [ 3.0, 3.0 ], [ 3.0, 3.0 ] ], [ [ 3.0, 3.0 ], [ 3.0, 3.0 ] ], [ [ 3.0, 3.0 ], [ 3.0, 3.0 ] ], [ [ 3.0, 3.0 ], [ 3.0, 3.0 ] ] ]
47+
* // => [ [ [ [ 3.0, 3.0 ], [ 3.0, 3.0 ] ], [ [ 3.0, 3.0 ], [ 3.0, 3.0 ] ] ], [ [ [ 3.0, 3.0 ], [ 3.0, 3.0 ] ], [ [ 3.0, 3.0 ], [ 3.0, 3.0 ] ] ] ]
4848
*/
4949

5050
// MODULES //

base/cuevery/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @example
2727
* var cuevery = require( '@stdlib/array/base/cuevery' );
2828
*
29-
* var x = [ true, true, true, false, true ]
29+
* var x = [ true, true, true, false, true ];
3030
*
3131
* var y = cuevery( x );
3232
* // returns [ true, true, true, false, false ]

base/cunone/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @example
2727
* var cunone = require( '@stdlib/array/base/cunone' );
2828
*
29-
* var x = [ false, false, false, true, false ]
29+
* var x = [ false, false, false, true, false ];
3030
*
3131
* var y = cunone( x );
3232
* // returns [ true, true, true, false, false ]

base/flatten2d-by/lib/index.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,8 @@
5858
* var x = [ [ 1, 2 ], [ 3, 4 ] ];
5959
*
6060
* var out = new Float64Array( 4 );
61-
* var y = flatten2dBy( x, [ 2, 2 ], true, out, 1, 0, scale );
61+
* var y = flatten2dBy( x, [ 2, 2 ], true, scale, out, 1, 0 );
6262
* // returns <Float64Array>[ 2, 6, 4, 8 ]
63-
*
64-
* var bool = ( y === out );
65-
* // returns true
6663
*/
6764

6865
// MODULES //

base/fliplr2d/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/array/base/fliplr2d
2525
*
2626
* @example
27-
* var fliplr = require( '@stdlib/array/base/fliplr2d' );
27+
* var fliplr2d = require( '@stdlib/array/base/fliplr2d' );
2828
*
2929
* var x = [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ];
3030
*

base/fliplr3d/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/array/base/fliplr3d
2525
*
2626
* @example
27-
* var fliplr = require( '@stdlib/array/base/fliplr3d' );
27+
* var fliplr3d = require( '@stdlib/array/base/fliplr3d' );
2828
*
2929
* var x = [ [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ] ];
3030
*

base/map/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* var x = ones( 4 );
4848
* var y = zeros( x.length );
4949
*
50-
* var out = map.assign( x, y, scale );
50+
* var out = map.assign( x, y, 1, 0, scale );
5151
* // returns [ 10.0, 10.0, 10.0, 10.0 ]
5252
*
5353
* var bool = ( out === y );

base/setter/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* @example
2727
* var dtype = require( '@stdlib/array/dtype' );
28-
* var set = require( '@stdlib/array/base/setter' );
28+
* var setter = require( '@stdlib/array/base/setter' );
2929
*
3030
* var arr = [ 1, 2, 3, 4 ];
3131
*

0 commit comments

Comments
 (0)