Skip to content

Commit 1d014d0

Browse files
committed
Auto-generated commit
1 parent ecf4f68 commit 1d014d0

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
@@ -725,6 +725,7 @@ A total of 90 issues were closed in this release:
725725

726726
<details>
727727

728+
- [`b20816f`](https://github.com/stdlib-js/stdlib/commit/b20816f0b727f9a365b0fd526092db9cd2ad75fc) - **docs:** fix incorrect return annotation [(#11128)](https://github.com/stdlib-js/stdlib/pull/11128) _(by anee3)_
728729
- [`b7feba2`](https://github.com/stdlib-js/stdlib/commit/b7feba2d63f20199707be94ffa1284538e0c4395) - **docs:** fix C example variable declaration [(#11127)](https://github.com/stdlib-js/stdlib/pull/11127) _(by anee3)_
729730
- [`727c508`](https://github.com/stdlib-js/stdlib/commit/727c508beee8414b732fadb3f882d98cbb3f69cf) - **docs:** fix C example function call [(#11126)](https://github.com/stdlib-js/stdlib/pull/11126) _(by anee3)_
730731
- [`d42b153`](https://github.com/stdlib-js/stdlib/commit/d42b153778f21dd1cd0814887086f43417de3738) - **docs:** fix C example variable declaration [(#11125)](https://github.com/stdlib-js/stdlib/pull/11125) _(by anee3)_

base/special/croundn/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838
* stdlib_complex128_t out = stdlib_base_croundn( z, -2 );
3939
*
4040
* double re = stdlib_complex128_real( out );
41-
* // returns 3.14
41+
* // returns -3.14
4242
*
4343
* double im = stdlib_complex128_imag( out );
44-
* // returns -3.14
44+
* // returns 3.14
4545
*/
4646
stdlib_complex128_t stdlib_base_croundn( const stdlib_complex128_t z, const int32_t n ) {
4747
double re;

0 commit comments

Comments
 (0)