Skip to content

Commit cf5fb47

Browse files
committed
Auto-generated commit
1 parent 7fa4688 commit cf5fb47

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)_

ext/base/ndarray/dsort/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
4444
var Float64Array = require( '@stdlib/array/float64' );

ext/base/ndarray/dsort/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

ext/base/ndarray/dsort/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import { 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
*

ext/base/ndarray/dsort/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
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
*

ext/base/ndarray/dsort/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
*

ext/base/ndarray/dsort/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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",

0 commit comments

Comments
 (0)