Skip to content

Commit 3b2fa8f

Browse files
committed
docs: update descriptions
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: passed - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent 328ca77 commit 3b2fa8f

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

lib/node_modules/@stdlib/blas/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' );

lib/node_modules/@stdlib/blas/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

lib/node_modules/@stdlib/blas/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
*

lib/node_modules/@stdlib/blas/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
*

lib/node_modules/@stdlib/blas/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( '@stdlib/blas/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
*

lib/node_modules/@stdlib/blas/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)