Skip to content

Commit 2604e21

Browse files
docs: fix C example variable declaration
PR-URL: #11124 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent baef022 commit 2604e21

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/acoth/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/special/acoth/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @return output value
2727
*
2828
* @example
29-
* out = stdlib_base_acoth( 2.0 );
29+
* double out = stdlib_base_acoth( 2.0 );
3030
* // returns ~0.5493
3131
*/
3232
double stdlib_base_acoth( const double x ) {

0 commit comments

Comments
 (0)