Skip to content

Commit 63a9af5

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 8ea33d5 commit 63a9af5

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

lib/node_modules/@stdlib/number/float16/base/assert/is-nan/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
# isnan
2222

23-
> Test if a half-precision floating-point numeric value is NaN.
23+
> Test if a half-precision floating-point number is NaN.
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var isnan = require( '@stdlib/number/float16/base/assert/is-nan' );
3232

3333
#### isnan( x )
3434

35-
Tests if a half-precision floating-point `numeric` value is `NaN`.
35+
Tests if a half-precision floating-point number is `NaN`.
3636

3737
```javascript
3838
var bool = isnan( NaN );

lib/node_modules/@stdlib/number/float16/base/assert/is-nan/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( x )
3-
Tests if a half-precision floating-point numeric value is `NaN`.
3+
Tests if a half-precision floating-point number is `NaN`.
44

55
Parameters
66
----------

lib/node_modules/@stdlib/number/float16/base/assert/is-nan/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// TypeScript Version: 4.1
2020

2121
/**
22-
* Tests if a half-precision floating-point numeric value is `NaN`.
22+
* Tests if a half-precision floating-point number is `NaN`.
2323
*
2424
* @param x - value to test
2525
* @returns boolean indicating whether the value is `NaN`

lib/node_modules/@stdlib/number/float16/base/assert/is-nan/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-
* Test if a half-precision floating-point numeric value is `NaN`.
22+
* Test if a half-precision floating-point number is `NaN`.
2323
*
2424
* @module @stdlib/number/float16/base/assert/is-nan
2525
*

lib/node_modules/@stdlib/number/float16/base/assert/is-nan/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MAIN //
2222

2323
/**
24-
* Tests if a half-precision floating-point numeric value is `NaN`.
24+
* Tests if a half-precision floating-point number is `NaN`.
2525
*
2626
* @param {number} x - value to test
2727
* @returns {boolean} boolean indicating whether the value is `NaN`

lib/node_modules/@stdlib/number/float16/base/assert/is-nan/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/number/float16/base/assert/is-nan",
33
"version": "0.0.0",
4-
"description": "Test if a half-precision floating-point numeric value is NaN.",
4+
"description": "Test if a half-precision floating-point number is NaN.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

lib/node_modules/@stdlib/number/float16/base/assert/is-negative-zero/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
# isNegativeZero
2222

23-
> Test if a half-precision floating-point numeric value is negative zero.
23+
> Test if a half-precision floating-point number is negative zero.
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var isNegativeZero = require( '@stdlib/number/float16/base/assert/is-negative-ze
3232

3333
#### isNegativeZero( x )
3434

35-
Tests if a half-precision floating-point `numeric` value is negative zero.
35+
Tests if a half-precision floating-point number is negative zero.
3636

3737
```javascript
3838
var bool = isNegativeZero( -0.0 );

lib/node_modules/@stdlib/number/float16/base/assert/is-negative-zero/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( x )
3-
Tests if a half-precision floating-point numeric value is negative zero.
3+
Tests if a half-precision floating-point number is negative zero.
44

55
Parameters
66
----------

lib/node_modules/@stdlib/number/float16/base/assert/is-negative-zero/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// TypeScript Version: 4.1
2020

2121
/**
22-
* Tests if a half-precision floating-point numeric value is negative zero.
22+
* Tests if a half-precision floating-point number is negative zero.
2323
*
2424
* @param x - value to test
2525
* @returns boolean indicating whether the value is negative zero

lib/node_modules/@stdlib/number/float16/base/assert/is-negative-zero/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-
* Test if a half-precision floating-point numeric value is negative zero.
22+
* Test if a half-precision floating-point number is negative zero.
2323
*
2424
* @module @stdlib/number/float16/base/assert/is-negative-zero
2525
*

0 commit comments

Comments
 (0)