Skip to content

Commit d211b60

Browse files
committed
chore: update function descriptions
1 parent fc55962 commit d211b60

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# isOddf
2222

23-
> Test if a finite single-precision floating-point nummeric value is an odd number.
23+
> Test if a finite single-precision floating-point number is an odd number.
2424
2525
<section class="usage">
2626

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

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

22
{{alias}}( x )
33
Tests if a finite single-precision floating-point
4-
numeric value is an odd number.
4+
number is an odd number.
55

66
The function assumes a finite number. If provided positive or negative
77
infinity, the function will return `true`, when, in fact, the result is

lib/node_modules/@stdlib/math/base/assert/is-oddf/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 finite single-precision floating-point numeric value is an odd number.
22+
* Tests if a finite single-precision floating-point number is an odd number.
2323
*
2424
* ## Notes
2525
*

lib/node_modules/@stdlib/math/base/assert/is-oddf/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 finite single-precision floating-point numeric value is an odd number.
22+
* Test if a finite single-precision floating-point number is an odd number.
2323
*
2424
* @module @stdlib/math/base/assert/is-oddf
2525
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var isEvenf = require( '@stdlib/math/base/assert/is-evenf' );
2626
// MAIN //
2727

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var addon = require( './../src/addon.node' );
2727
// MAIN //
2828

2929
/**
30-
* Tests if a finite single-precision floating-point numeric value is an odd number.
30+
* Tests if a finite single-precision floating-point number is an odd number.
3131
*
3232
* @private
3333
* @param {number} x - value to test

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

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

0 commit comments

Comments
 (0)