Skip to content

Commit b20816f

Browse files
docs: fix incorrect return annotation
PR-URL: #11128 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent b7feba2 commit b20816f

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/croundn/src

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/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)