Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/croundn/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
* stdlib_complex128_t out = stdlib_base_croundn( z, -2 );
*
* double re = stdlib_complex128_real( out );
* // returns 3.14
* // returns -3.14
*
* double im = stdlib_complex128_imag( out );
* // returns -3.14
* // returns 3.14
*/
stdlib_complex128_t stdlib_base_croundn( const stdlib_complex128_t z, const int32_t n ) {
double re;
Expand Down