Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Oct 27, 2024
1 parent 4e282b4 commit 5187e25
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

## Unreleased (2024-10-26)
## Unreleased (2024-10-27)

<section class="packages">

Expand Down Expand Up @@ -520,6 +520,7 @@ A total of 5 people contributed to this release. Thank you to the following cont

<details>

- [`60522bf`](https://github.com/stdlib-js/stdlib/commit/60522bfc0b5574d348301e788400178156731024) - **docs:** fix operator [(#3039)](https://github.com/stdlib-js/stdlib/pull/3039) _(by Gunj Joshi)_
- [`84b8294`](https://github.com/stdlib-js/stdlib/commit/84b8294c2d5494ff5eaaa2652dda81671e728068) - **feat:** add `math/base/special/nanmaxf` [(#3035)](https://github.com/stdlib-js/stdlib/pull/3035) _(by Gunj Joshi, Athan Reines)_
- [`f770fc2`](https://github.com/stdlib-js/stdlib/commit/f770fc258b7976ebd51fb501290cb33296d2e036) - **docs:** add missing fields in `package.json` [(#3036)](https://github.com/stdlib-js/stdlib/pull/3036) _(by Gunj Joshi)_
- [`30d56c3`](https://github.com/stdlib-js/stdlib/commit/30d56c355e6fa871ff5e42ac12d30ecd95011e00) - **feat:** add `math/base/special/nanminf` [(#3034)](https://github.com/stdlib-js/stdlib/pull/3034) _(by Gunj Joshi)_
Expand Down
2 changes: 1 addition & 1 deletion base/special/fmod/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ var i;
for ( i = 0; i < 100; i++ ) {
x = round( randu() * 10.0 );
y = round( randu() * 10.0 ) - 5.0;
console.log( '%d^%d = %d', x, y, fmod( x, y ) );
console.log( '%d%%%d = %d', x, y, fmod( x, y ) );
}
```

Expand Down
2 changes: 1 addition & 1 deletion base/special/fmod/examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ var i;
for ( i = 0; i < 100; i++ ) {
x = round( randu() * 10.0 );
y = round( randu() * 10.0 ) - 5.0;
console.log( '%d^%d = %d', x, y, fmod( x, y ) );
console.log( '%d%%%d = %d', x, y, fmod( x, y ) );
}
2 changes: 1 addition & 1 deletion base/special/fmod/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
*
* @param x dividend
* @param y divisor
* @return remainder
* @return remainder
*
* @example
* double out = stdlib_base_fmod( 8.9, 3.0 );
Expand Down

0 comments on commit 5187e25

Please sign in to comment.