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 Jul 14, 2024
1 parent 741040a commit cff2552
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5066,6 +5066,7 @@ A total of 29 people contributed to this release. Thank you to the following con

<details>

- [`26337e1`](https://github.com/stdlib-js/stdlib/commit/26337e1644c963b8006e38c4b5e2ee74eac8e33f) - **docs:** fix return annotation tag in C comments _(by Philipp Burckhardt)_
- [`8558d86`](https://github.com/stdlib-js/stdlib/commit/8558d869aed0f22f0fbdcd54321c5058c954df89) - **feat:** add `math/base/special/fmod` [(##2562)](#2562) _(by Gunj Joshi)_
- [`e9d0de8`](https://github.com/stdlib-js/stdlib/commit/e9d0de8077f47e49ff703c1b106e262454e5d15d) - **chore:** update package meta data [(#2596)](https://github.com/stdlib-js/stdlib/pull/2596) _(by stdlib-bot, Athan Reines)_
- [`2e723fb`](https://github.com/stdlib-js/stdlib/commit/2e723fbb6e3acfca2d0d413c26c96a207a616636) - **feat:** add C implementation for `math/base/special/roundb` _(by Gunj Joshi, Philipp Burckhardt)_
Expand Down
2 changes: 1 addition & 1 deletion base/special/acscd/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Computes the arccosecant (in degrees) of a double-precision floating-point number.
*
* @param x input value
* @returns arccosecant (in degrees)
* @return arccosecant (in degrees)
*
* @example
* double v = stdlib_base_acscd( 1.0 );
Expand Down
6 changes: 3 additions & 3 deletions base/special/digamma/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static double rational_pq( const double x ) {
* Evaluates the digamma function via asymptotic expansion.
*
* @param x input value
* @returns function value
* @return function value
*/
static double asymptoticApprox( const double x ) {
double y;
Expand All @@ -129,7 +129,7 @@ static double asymptoticApprox( const double x ) {
* Evaluates the digamma function over interval `[1,2]`.
*
* @param x input value
* @returns function value
* @return function value
*/
static double rationalApprox( const double x ) {
double g;
Expand Down Expand Up @@ -211,7 +211,7 @@ static double rationalApprox( const double x ) {
* - Max error found: \\(2.452\mbox{e-}17\\) (double precision)
*
* @param x input value
* @returns function value
* @return function value
*
* @example
* double v = stdlib_base_digamma( -2.5 );
Expand Down
2 changes: 1 addition & 1 deletion base/special/fast/atanh/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Computes the hyperbolic arctangent of a number.
*
* @param x input value
* @returns hyperbolic arctangent (in radians)
* @return hyperbolic arctangent (in radians)
*
* @example
* double v = stdlib_base_fast_atanh( 0.0 );
Expand Down

0 comments on commit cff2552

Please sign in to comment.