Skip to content

Commit fcc7ba6

Browse files
committed
Update descriptions
1 parent 0d5ba08 commit fcc7ba6

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

lib/node_modules/@stdlib/math/base/assert/is-nan/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# isNaN
2222

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

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

3333
#### isnan( x )
3434

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// TypeScript Version: 2.0
2020

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

lib/node_modules/@stdlib/math/base/assert/is-nan/include/stdlib/math/base/assert/is_nan.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ extern "C" {
3232
#endif
3333

3434
/**
35-
* Tests if a numeric value is `NaN`.
35+
* Tests if a double-precision floating-point numeric value is `NaN`.
3636
*/
3737
bool stdlib_base_is_nan( const double x );
3838

lib/node_modules/@stdlib/math/base/assert/is-nan/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Test if a numeric value is `NaN`.
22+
* Test if a double-precision floating-point numeric value is `NaN`.
2323
*
2424
* @module @stdlib/math/base/assert/is-nan
2525
*

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MAIN //
2222

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

lib/node_modules/@stdlib/math/base/assert/is-nan/lib/native.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
2626
// MAIN //
2727

2828
/**
29-
* Tests if a numeric value is `NaN`.
29+
* Tests if a double-precision floating-point numeric value is `NaN`.
3030
*
3131
* @param {number} x - value to test
3232
* @returns {boolean} boolean indicating whether the value is `NaN`

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

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

lib/node_modules/@stdlib/math/base/assert/is-nan/src/addon.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
/**
20-
* Test if a numeric value is `NaN`.
20+
* Test if a double-precision floating-point numeric value is `NaN`.
2121
*/
2222
#include "stdlib/math/base/assert/is_nan.h"
2323
#include <node_api.h>
@@ -30,7 +30,7 @@
3030
namespace stdlib_math_base_assert_is_nan {
3131

3232
/**
33-
* Tests if a numeric value is `NaN`.
33+
* Tests if a double-precision floating-point numeric value is `NaN`.
3434
*
3535
* ## Notes
3636
*

lib/node_modules/@stdlib/math/base/assert/is-nan/src/is_nan.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include <stdbool.h>
2424

2525
/**
26-
* Tests if a numeric value is `NaN`.
26+
* Tests if a double-precision floating-point numeric value is `NaN`.
2727
*
2828
* @param x number
2929
* @return boolean indicating if an input value is `NaN`

0 commit comments

Comments
 (0)