Skip to content

Commit 54e9d2a

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: 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: 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: na - task: lint_license_headers status: passed ---
1 parent c555c96 commit 54e9d2a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/math/base/special/log1pmxf/include/stdlib/math/base/special/log1pmxf.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-
* Evaluates \\( \operatorname{log1pmxf}(x) = \lnf(1+x) - x \\) for a single-precision floating point number.
30+
* Evaluates \\( \operatorname{log1pmxf}(x) = \ln(1+x) - x \\) for a single-precision floating point number.
3131
*/
3232
float stdlib_base_log1pmxf( const float x );
3333

lib/node_modules/@stdlib/math/base/special/log1pmxf/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-
* Evaluate \\( \operatorname{log1pmxf}(x) = \lnf(1+x) - x \\) for a single-precision floating point number.
22+
* Evaluate \\( \operatorname{log1pmxf}(x) = \ln(1+x) - x \\) for a single-precision floating point number.
2323
*
2424
* @module @stdlib/math/base/special/log1pmxf
2525
*

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

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

5252
/**
53-
* Evaluates \\( \operatorname{log1pmxf}(x) = \lnf(1+x) - x \\) for a single-precision floating point number.
53+
* Evaluates \\( \operatorname{log1pmxf}(x) = \ln(1+x) - x \\) for a single-precision floating point number.
5454
*
5555
* @param {number} x - input value
5656
* @returns {number} function value

lib/node_modules/@stdlib/math/base/special/log1pmxf/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-
* Evaluates \\( \operatorname{log1pmxf}(x) = \lnf(1+x) - x \\) for a single-precision floating point number.
29+
* Evaluates \\( \operatorname{log1pmxf}(x) = \ln(1+x) - x \\) for a single-precision floating point number.
3030
*
3131
* @private
3232
* @param {number} x - input value

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
#include "stdlib/constants/float32/eps.h"
3737

3838
/**
39-
* Evaluates \\( \operatorname{log1pmxf}(x) = \lnf(1+x) - x \\) for a single-precision floating point number.
39+
* Evaluates \\( \operatorname{log1pmxf}(x) = \ln(1+x) - x \\) for a single-precision floating point number.
4040
*
4141
* @param x input value
4242
* @return output value

0 commit comments

Comments
 (0)