From 5187e255b1e9570106a8d5971f222c24d8e9d88a Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 27 Oct 2024 20:04:13 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 3 ++- base/special/fmod/README.md | 2 +- base/special/fmod/examples/index.js | 2 +- base/special/fmod/src/main.c | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8680c9b07..648daec50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-10-26) +## Unreleased (2024-10-27)
@@ -520,6 +520,7 @@ A total of 5 people contributed to this release. Thank you to the following cont
+- [`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)_ diff --git a/base/special/fmod/README.md b/base/special/fmod/README.md index e100dbc5a..ab87cd2d5 100644 --- a/base/special/fmod/README.md +++ b/base/special/fmod/README.md @@ -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 ) ); } ``` diff --git a/base/special/fmod/examples/index.js b/base/special/fmod/examples/index.js index a340d0d5d..8f3ca1e73 100644 --- a/base/special/fmod/examples/index.js +++ b/base/special/fmod/examples/index.js @@ -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 ) ); } diff --git a/base/special/fmod/src/main.c b/base/special/fmod/src/main.c index fa49ff082..72217eee2 100644 --- a/base/special/fmod/src/main.c +++ b/base/special/fmod/src/main.c @@ -46,7 +46,7 @@ * * @param x dividend * @param y divisor -* @return remainder +* @return remainder * * @example * double out = stdlib_base_fmod( 8.9, 3.0 );