From 0e799214f34b5536cf29415aa836157fa044f39f Mon Sep 17 00:00:00 2001 From: officiallyanee Date: Wed, 25 Mar 2026 06:18:59 +0530 Subject: [PATCH] docs(math/base/special/acoth): fix C example variable declaration --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- lib/node_modules/@stdlib/math/base/special/acoth/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acoth/src/main.c b/lib/node_modules/@stdlib/math/base/special/acoth/src/main.c index 308bc18b6f8f..87fef1cffe7f 100644 --- a/lib/node_modules/@stdlib/math/base/special/acoth/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/acoth/src/main.c @@ -26,7 +26,7 @@ * @return output value * * @example -* out = stdlib_base_acoth( 2.0 ); +* double out = stdlib_base_acoth( 2.0 ); * // returns ~0.5493 */ double stdlib_base_acoth( const double x ) {