Skip to content

Commit 2ab8d2f

Browse files
committed
chore: changes according to review
--- 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: passed - 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: na - task: lint_c_examples status: missing_dependencies - 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 ---
1 parent c8b533f commit 2ab8d2f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/node_modules/@stdlib/math/base/special/acschf/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ logEachMap( 'acschf(%0.4f) = %0.4f', x, acschf );
111111

112112
#### stdlib_base_acschf( x )
113113

114-
> Computes the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number.
114+
Computes the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number.
115115

116116
```c
117117
float out = stdlib_base_acschf( 1.0f );
118-
// returns ~0.881
118+
// returns ~0.881f
119119
```
120120

121121
The function accepts the following arguments:

lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include <stdio.h>
2121

2222
int main( void ) {
23-
const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.55f, 0.55f, 1.67f, 2.78f, 3.89f, 5.0f };
23+
const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.55f, 0.55f, 1.67f, 2.78f, 3.89f, 5.0f };
2424

2525
float v;
2626
int i;

0 commit comments

Comments
 (0)