File tree Expand file tree Collapse file tree 7 files changed +8
-7
lines changed
Expand file tree Collapse file tree 7 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -860,6 +860,7 @@ A total of 57 issues were closed in this release:
860860
861861<details>
862862
863+ - [`3b2fa8f`](https://github.com/stdlib-js/stdlib/commit/3b2fa8f05fd9bd37f3a7f71f3d5b4ff0f60557e9) - **docs:** update descriptions _(by Athan Reines)_
863864- [`328ca77`](https://github.com/stdlib-js/stdlib/commit/328ca7797c1446568242d8bbd510129396fe3af0) - **docs:** fix notes _(by Athan Reines)_
864865- [`12d495c`](https://github.com/stdlib-js/stdlib/commit/12d495c163461b9d3141e9ad84047b1f5910f966) - **docs:** improve doctests for ndarray instances in `blas/ext/to-sortedhp` [(#11479)](https://github.com/stdlib-js/stdlib/pull/11479) _(by Uday Kakade)_
865866- [`fa69a58`](https://github.com/stdlib-js/stdlib/commit/fa69a5843285eae8c1340497bf27ecc51875f384) - **docs:** improve doctests for ndarray instances in `blas/ext/sum` [(#11481)](https://github.com/stdlib-js/stdlib/pull/11481) _(by Uday Kakade)_
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ limitations under the License.
2020
2121# dsort
2222
23- > Sort a double-precision floating-point ndarray.
23+ > Sort a one-dimensional double-precision floating-point ndarray.
2424
2525<section class =" intro " >
2626
@@ -38,7 +38,7 @@ var dsort = require( '@stdlib/blas/ext/base/ndarray/dsort' );
3838
3939#### dsort( arrays )
4040
41- Sorts a double-precision floating-point ndarray.
41+ Sorts a one-dimensional double-precision floating-point ndarray.
4242
4343``` javascript
4444var Float64Array = require ( ' @stdlib/array/float64' );
Original file line number Diff line number Diff line change 11
22{{alias}}( arrays )
3- Sorts a double-precision floating-point ndarray.
3+ Sorts a one-dimensional double-precision floating-point ndarray.
44
55 When the sort order is less than zero, the input ndarray is sorted in
66 decreasing order. When the sort order is greater than zero, the input
Original file line number Diff line number Diff line change 2323import { typedndarray , float64ndarray } from '@stdlib/types/ndarray' ;
2424
2525/**
26- * Sorts a double-precision floating-point ndarray.
26+ * Sorts a one-dimensional double-precision floating-point ndarray.
2727*
2828* ## Notes
2929*
Original file line number Diff line number Diff line change 1919'use strict' ;
2020
2121/**
22- * Sort a double-precision floating-point ndarray.
22+ * Sort a one-dimensional double-precision floating-point ndarray.
2323*
2424* @module @stdlib /blas/ext/base/ndarray/dsort
2525*
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ var strided = require( './../../../../../ext/base/dsort' ).ndarray;
3131// MAIN //
3232
3333/**
34- * Sorts a double-precision floating-point ndarray.
34+ * Sorts a one-dimensional double-precision floating-point ndarray.
3535*
3636* ## Notes
3737*
Original file line number Diff line number Diff line change 11{
22 "name" : " @stdlib/blas/ext/base/ndarray/dsort" ,
33 "version" : " 0.0.0" ,
4- "description" : " Sort a double-precision floating-point ndarray." ,
4+ "description" : " Sort a one-dimensional double-precision floating-point ndarray." ,
55 "license" : " Apache-2.0" ,
66 "author" : {
77 "name" : " The Stdlib Authors" ,
You can’t perform that action at this time.
0 commit comments