Skip to content

Commit ff3cab8

Browse files
committed
fix: apply code suggestions
--- 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: passed - 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: missing_dependencies - 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: passed - task: lint_license_headers status: passed ---
1 parent 63d8136 commit ff3cab8

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{{alias}}( x )
33
Computes the principal square root of `1+x` minus one for a single-precision
4-
floating point number.
4+
floating-point number.
55

66
This function is more accurate than the obvious approach for small `x`.
77

lib/node_modules/@stdlib/math/base/special/sqrt1pm1f/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// TypeScript Version: 4.1
2020

2121
/**
22-
* Computes the value of `sqrt(1+x)-1` for a single-precision floating point number.
22+
* Computes the value of `sqrt(1+x)-1` for a single-precision floating-point number.
2323
*
2424
* @param x - input value
2525
* @returns square root of `1+x` minus one

lib/node_modules/@stdlib/math/base/special/sqrt1pm1f/include/stdlib/math/base/special/sqrt1pm1f.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Computes the value of `sqrt(1+x)-1` for a single-precision floating point number.
30+
* Computes the value of `sqrt(1+x)-1` for a single-precision floating-point number.
3131
*/
3232
float stdlib_base_sqrt1pm1f( const float x );
3333

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Compute the value of `sqrt(1+x)-1` for a single-precision floating point number.
22+
* Compute the value of `sqrt(1+x)-1` for a single-precision floating-point number.
2323
*
2424
* @module @stdlib/math/base/special/sqrt1pm1f
2525
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var TWO = f32( 2.0 );
5151
// MAIN //
5252

5353
/**
54-
* Computes the value of `sqrt(1+x)-1` for a single-precision floating point number.
54+
* Computes the value of `sqrt(1+x)-1` for a single-precision floating-point number.
5555
*
5656
* @param {number} x - input value
5757
* @returns {number} square root of `1+x` minus one

lib/node_modules/@stdlib/math/base/special/sqrt1pm1f/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
2626
// MAIN //
2727

2828
/**
29-
* Computes the value of `sqrt(1+x)-1` for a single-precision floating point number.
29+
* Computes the value of `sqrt(1+x)-1` for a single-precision floating-point number.
3030
*
3131
* @private
3232
* @param {number} x - input value

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
extern float expm1f( float x );
4242

4343
/**
44-
* Computes the value of `sqrt(1+x)-1` for a single-precision floating point number.
44+
* Computes the value of `sqrt(1+x)-1` for a single-precision floating-point number.
4545
*
4646
* @param x input value
4747
* @return output value

0 commit comments

Comments
 (0)