Skip to content

Commit d35d6c7

Browse files
committed
Auto-generated commit
1 parent bbe74bf commit d35d6c7

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-09-01)
7+
## Unreleased (2024-09-07)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`73c23e2`](https://github.com/stdlib-js/stdlib/commit/73c23e29e5030bd65421bce1eb3fde2fa964c4a4) - **docs:** include stdbool, remove backticks [(#2881)](https://github.com/stdlib-js/stdlib/pull/2881 ) _(by Gunj Joshi)_
1516
- [`2777e4b`](https://github.com/stdlib-js/stdlib/commit/2777e4be161869d09406e3b17947d24c64b47af2) - **bench:** resolve lint errors in benchmarks _(by Athan Reines)_
1617

1718
</details>
@@ -24,9 +25,10 @@
2425

2526
### Contributors
2627

27-
A total of 1 person contributed to this release. Thank you to this contributor:
28+
A total of 2 people contributed to this release. Thank you to the following contributors:
2829

2930
- Athan Reines
31+
- Gunj Joshi
3032

3133
</section>
3234

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
2626
Frank Kovacs <fran70kk@gmail.com>
2727
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
2828
Gunj Joshi <gunjjoshi8372@gmail.com>
29+
HarshaNP <96897754+GittyHarsha@users.noreply.github.com>
2930
Harshita Kalani <harshitakalani02@gmail.com>
3031
Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com>
3132
Jaimin Godhani <112328542+Jai0401@users.noreply.github.com>
@@ -96,3 +97,4 @@ nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
9697
orimiles5 <97595296+orimiles5@users.noreply.github.com>
9798
rainn <88160429+AmCodesLame@users.noreply.github.com>
9899
rei2hu <reimu@reimu.ws>
100+
yaswanth <116426380+yaswanthkosuru@users.noreply.github.com>

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ var isNonNegativeInteger = require( '@stdlib/math-base-assert-is-nonnegative-int
6565

6666
#### isNonNegativeInteger( x )
6767

68-
Tests if a finite [double-precision floating-point number][ieee754] is a nonnegative `integer`.
68+
Tests if a finite [double-precision floating-point number][ieee754] is a nonnegative integer.
6969

7070
```javascript
7171
var bool = isNonNegativeInteger( 1.0 );
@@ -86,7 +86,7 @@ bool = isNonNegativeInteger( -10.0 );
8686

8787
## Notes
8888

89-
- The function assumes a **finite** `number`. If provided positive `infinity`, the function will return `true`, when, in fact, the result is undefined. If `x` can be `infinite`, wrap the implementation as follows:
89+
- The function assumes a **finite** number. If provided positive `infinity`, the function will return `true`, when, in fact, the result is undefined. If `x` can be `infinite`, wrap the implementation as follows:
9090

9191
```javascript
9292
function check( x ) {
@@ -174,6 +174,8 @@ bool = isNonNegativeInteger( NaN );
174174
Tests if a finite [double-precision floating-point number][ieee754] is a nonnegative integer.
175175

176176
```c
177+
#include <stdbool.h>
178+
177179
bool out = stdlib_base_is_nonnegative_integer( 1.0 );
178180
// returns true
179181

0 commit comments

Comments
 (0)