Skip to content

Commit 8f84227

Browse files
committed
Auto-generated commit
1 parent 9f42a43 commit 8f84227

File tree

13 files changed

+16
-15
lines changed

13 files changed

+16
-15
lines changed

CHANGELOG.md

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

165165
<details>
166166

167+
- [`63a9af5`](https://github.com/stdlib-js/stdlib/commit/63a9af59c1d602d79ae593bb98346e991b0f2874) - **docs:** update descriptions _(by Athan Reines)_
167168
- [`2d6416a`](https://github.com/stdlib-js/stdlib/commit/2d6416add43fe03624335438d20fb293bf78405a) - **feat:** add `number/float16/base/assert/is-negative-zero` [(#9623)](https://github.com/stdlib-js/stdlib/pull/9623) _(by Neeraj Pathak)_
168169
- [`aebc415`](https://github.com/stdlib-js/stdlib/commit/aebc415cd7b1579ef8935576eb4fae94a4277846) - **feat:** add `number/float16/base/assert/is-nan` [(#9625)](https://github.com/stdlib-js/stdlib/pull/9625) _(by Lokesh Ranjan)_
169170
- [`056ece8`](https://github.com/stdlib-js/stdlib/commit/056ece8dfb301d321667f266232a4c9833f4380e) - **chore:** update meta data _(by Athan Reines)_

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 );

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
----------

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`

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
*

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`

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",

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 );

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
----------

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

0 commit comments

Comments
 (0)