Skip to content

Commit 6236683

Browse files
committed
chore: clean up
--- 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: passed - 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 ---
1 parent 1ffffbe commit 6236683

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ Computes the [hyperbolic arcsine][hyperbolic-arcsine] of a single-precision floa
116116

117117
```c
118118
float out = stdlib_base_asinhf( 2.0f );
119-
// returns ~1.444
119+
// returns ~1.444f
120120

121121
out = stdlib_base_asinhf( -2.0f );
122-
// returns ~-1.444
122+
// returns ~-1.444f
123123
```
124124

125125
The function accepts the following arguments:

lib/node_modules/@stdlib/math/base/special/asinhf/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
~-1.444
2323
> y = {{alias}}( NaN )
2424
NaN
25-
> y = {{alias}}( {{alias:@stdlib/constants/float64/ninf}} )
25+
> y = {{alias}}( {{alias:@stdlib/constants/float32/ninf}} )
2626
-Infinity
27-
> y = {{alias}}( {{alias:@stdlib/constants/float64/pinf}} )
27+
> y = {{alias}}( {{alias:@stdlib/constants/float32/pinf}} )
2828
Infinity
2929

3030
See Also

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
* ## Notice
2020
*
21-
* The following copyright, license, and long comment were part of the original implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/s_asinh.c?view=markup}. The implementation follows the original, but has been modified according to project conventions.
21+
* The following copyright, license, and long comment were part of the original implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/s_asinhf.c}. The implementation follows the original, but has been modified according to project conventions.
2222
*
2323
* ```text
2424
* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved.
@@ -69,7 +69,7 @@ static const float NEAR_ZERO = 1.0f / HUGE; // 2**-28
6969
*
7070
* @example
7171
* float out = stdlib_base_asinhf( 0.0f );
72-
* // returns 0.0
72+
* // returns 0.0f
7373
*/
7474
float stdlib_base_asinhf( const float x ) {
7575
int32_t sgn;

0 commit comments

Comments
 (0)