Skip to content

Commit 2c5bcdc

Browse files
committed
Auto-generated commit
1 parent 6148175 commit 2c5bcdc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,7 @@ A total of 26 issues were closed in this release:
598598

599599
<details>
600600

601+
- [`d55cb4b`](https://github.com/stdlib-js/stdlib/commit/d55cb4bbda9f3810f92a2535fdbb60a62c60e161) - **docs:** add missing decimals _(by Athan Reines)_
601602
- [`607adbe`](https://github.com/stdlib-js/stdlib/commit/607adbe9aba4c11a689408c62930ca3901db5f7d) - **chore:** minor clean-up _(by Philipp Burckhardt)_
602603
- [`29d3bbb`](https://github.com/stdlib-js/stdlib/commit/29d3bbb5241884d149b000c3a76d59227686728f) - **chore:** fix C lint errors [(#8157)](https://github.com/stdlib-js/stdlib/pull/8157) _(by GeoDaoyu, Athan Reines)_
603604
- [`6760298`](https://github.com/stdlib-js/stdlib/commit/6760298d2f7e38a975e2f27b24edb0d258c9c218) - **feat:** add `ndarray/pop` [(#8145)](https://github.com/stdlib-js/stdlib/pull/8145) _(by Muhammad Haris, Athan Reines)_

pop/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
* // returns [ <ndarray>, <ndarray> ]
4444
*
4545
* arr = ndarray2array( y[ 0 ] );
46-
* // returns [ [ 1 ], [ 3 ], [ 5 ] ]
46+
* // returns [ [ 1.0 ], [ 3.0 ], [ 5.0 ] ]
4747
*
4848
* arr = ndarray2array( y[ 1 ] );
49-
* // returns [ [ 2 ], [ 4 ], [ 6 ] ]
49+
* // returns [ [ 2.0 ], [ 4.0 ], [ 6.0 ] ]
5050
*/
5151

5252
// MODULES //

0 commit comments

Comments
 (0)