Skip to content

Commit 51d474d

Browse files
fix: spacomg in index.js & update notice header in main.c
--- 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: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - 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 e8b7b59 commit 51d474d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

  • lib/node_modules/@stdlib/math/base/special/digammaf

lib/node_modules/@stdlib/math/base/special/digammaf/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ var digammaf = require( './../lib' );
2525
var opts = {
2626
'dtype': 'float32'
2727
};
28-
var x = uniform(100, -5.0, 5.0, opts);
28+
var x = uniform( 100, -5.0, 5.0, opts );
2929

30-
logEachMap('x: %0.4f, f(x): %0.4f', x, digammaf);
30+
logEachMap( 'x: %0.4f, f(x): %0.4f', x, digammaf );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
* ## Notice
2020
*
21-
* The original C code, long comment, copyright, license, and constants are from [Cephes]{@link http://www.netlib.org/cephes}. The implementation follows the original, but has been modified for JavaScript.
21+
* The original C code, long comment, copyright, license, and constants are from [Cephes]{@link http://www.netlib.org/cephes}. The implementation follows the original, but has been modified for C.
2222
*
2323
* ```text
2424
* Cephes Math Library Release 2.2: June, 1992

0 commit comments

Comments
 (0)