Skip to content

Commit f72cf9a

Browse files
committed
Auto-generated commit
1 parent fdc199d commit f72cf9a

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -504,6 +504,7 @@ A total of 46 issues were closed in this release:
504504

505505
<details>
506506

507+
- [`a80a512`](https://github.com/stdlib-js/stdlib/commit/a80a51223274109e524c746abf43727607f2b610) - **docs:** fix argument types _(by Karan Anand)_
507508
- [`d6059e1`](https://github.com/stdlib-js/stdlib/commit/d6059e165da4f439309257fe617c00bde8a7feff) - **docs:** fix function signature _(by Karan Anand)_
508509
- [`a2565fe`](https://github.com/stdlib-js/stdlib/commit/a2565fec6fc4f97c59a73f86819230c19449980d) - **refactor:** use tuple for return type _(by Karan Anand)_
509510
- [`776f485`](https://github.com/stdlib-js/stdlib/commit/776f485c279d4386ad120362393dd0dfdbeca71d) - **docs:** correct parameter descriptions _(by Karan Anand)_

base/special/modf/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ stdlib_base_modf( 4.0, &integral, &frac );
145145
The function accepts the following arguments:
146146
147147
- **x**: `[in] double` input value.
148-
- **integral**: `[out] float*` destination for the integral part.
149-
- **frac**: `[out] float*` destination for the fractional part.
148+
- **integral**: `[out] double*` destination for the integral part.
149+
- **frac**: `[out] double*` destination for the fractional part.
150150
151151
```c
152152
void stdlib_base_modf( const double x, double *integral, double *frac );

0 commit comments

Comments
 (0)