Skip to content

Commit 27c4a1d

Browse files
committed
Auto-generated commit
1 parent 35a0813 commit 27c4a1d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-01-08)
7+
## Unreleased (2026-01-09)
88

99
<section class="features">
1010

@@ -715,6 +715,7 @@ A total of 80 issues were closed in this release:
715715

716716
<details>
717717

718+
- [`5149a6b`](https://github.com/stdlib-js/stdlib/commit/5149a6b650b60568bd0df248c2a97a3d8ca2ca87) - **chore:** minor clean-up _(by Philipp Burckhardt)_
718719
- [`5cddadf`](https://github.com/stdlib-js/stdlib/commit/5cddadf2f755a8e623ca132a6a0aa91bf6a51fdc) - **chore:** clean-up _(by Athan Reines)_
719720
- [`dafbda6`](https://github.com/stdlib-js/stdlib/commit/dafbda6d3b1b782596f643582a90c842026688aa) - **chore:** update to use correct type and match README.md _(by Philipp Burckhardt)_
720721
- [`a068c72`](https://github.com/stdlib-js/stdlib/commit/a068c72880b9f3757d8b00ec945eb4e9cba31a8b) - **feat:** add `math/base/special/roundnf` [(#9389)](https://github.com/stdlib-js/stdlib/pull/9389) _(by Aman Singh, Karan Anand, Philipp Burckhardt, stdlib-bot)_

base/special/roundnf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ var n = discreteUniform( 100, -5, 0, {
9393
'dtype': 'int32'
9494
});
9595
96-
logEachMap( 'x: %0.8f. Number of decimals: %d. Rounded: %0.8f', x, n, roundnf );
96+
logEachMap( 'x: %0.8f. Number of decimals: %d. Rounded: %0.8f.', x, n, roundnf );
9797
```
9898

9999
</section>

base/special/roundnf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ float stdlib_base_roundnf( const float x, const int32_t n ) {
109109
return 0.0f / 0.0f; // NaN
110110
}
111111
if (
112-
// Handle infinites...
112+
// Handle infinities...
113113
stdlib_base_is_infinitef( x ) ||
114114

115115
// Handle +-0...

0 commit comments

Comments
 (0)