Skip to content

Commit 6e77810

Browse files
committed
chore: minor 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: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 580a43f commit 6e77810

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/math/base/special/rcbrtf/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* // returns ~0.1
3434
*
3535
* v = rcbrtf( 0.0 );
36-
* // returns 0.0
36+
* // returns Infinity
3737
*
3838
* v = rcbrtf( Infinity );
3939
* // returns 0.0

lib/node_modules/@stdlib/math/base/special/rcbrtf/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var cbrt = require( '@stdlib/math/base/special/cbrt' );
2727
// MAIN //
2828

2929
/**
30-
* Compute the reciprocal cube root of a single-precision floating-point number.
30+
* Computes the reciprocal cube root of a single-precision floating-point number.
3131
*
3232
* @param {number} x - input value
3333
* @returns {number} reciprocal cube root

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
* // returns 0.5f
3131
*/
3232
float stdlib_base_rcbrtf( const float x ) {
33-
// As the cube root is a fundamental numerical operation, compute in extend precision in order to avoid precision loss:
33+
// As the cube root is a fundamental numerical operation, compute in extended precision in order to avoid precision loss:
3434
return 1.0f / stdlib_base_cbrt( x );
3535
}

0 commit comments

Comments
 (0)