Skip to content

Commit 1e2fbd0

Browse files
committed
Auto-generated commit
1 parent 78f7bc3 commit 1e2fbd0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`a80a512`](https://github.com/stdlib-js/stdlib/commit/a80a51223274109e524c746abf43727607f2b610) - **docs:** fix argument types _(by Karan Anand)_
2526
- [`776f485`](https://github.com/stdlib-js/stdlib/commit/776f485c279d4386ad120362393dd0dfdbeca71d) - **docs:** correct parameter descriptions _(by Karan Anand)_
2627
- [`678f471`](https://github.com/stdlib-js/stdlib/commit/678f471830cd4f3cfb1ba07b095a9c6da43a2e59) - **refactor:** remove redundant cast when generating integral part _(by Karan Anand)_
2728
- [`56cd0bf`](https://github.com/stdlib-js/stdlib/commit/56cd0bfb6e3d98349a2062e3ac26668f58ba09bb) - **refactor:** use tuple for return type _(by Karan Anand)_

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ stdlib_base_modf( 4.0, &integral, &frac );
178178
The function accepts the following arguments:
179179
180180
- **x**: `[in] double` input value.
181-
- **integral**: `[out] float*` destination for the integral part.
182-
- **frac**: `[out] float*` destination for the fractional part.
181+
- **integral**: `[out] double*` destination for the integral part.
182+
- **frac**: `[out] double*` destination for the fractional part.
183183
184184
```c
185185
void stdlib_base_modf( const double x, double *integral, double *frac );

0 commit comments

Comments
 (0)