Skip to content

Commit dd017a8

Browse files
committed
docs: fix use of %d
--- 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: 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: na - 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 ec1793a commit dd017a8

File tree

86 files changed

+87
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+87
-87
lines changed

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

Lines changed: 1 addition & 1 deletion

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ var x = uniform( 100, -1.0, 1.0, {
2626
'dtype': 'float64'
2727
});
2828

29-
logEachMap( 'acos(%f) = %f', x, acos );
29+
logEachMap( 'acos(%0.4f) = %0.4f', x, acos );

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

Lines changed: 1 addition & 1 deletion

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ var x = uniform( 100, -1.0, 1.0, {
2626
'dtype': 'float64'
2727
});
2828

29-
logEachMap( 'acosd(%f) = %f', x, acosd );
29+
logEachMap( 'acosd(%0.4f) = %0.4f', x, acosd );

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

Lines changed: 1 addition & 1 deletion

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ var x = uniform( 100, -1.0, 1.0, {
2626
'dtype': 'float32'
2727
});
2828

29-
logEachMap( 'acosdf(%f) = %f', x, acosdf );
29+
logEachMap( 'acosdf(%0.4f) = %0.4f', x, acosdf );

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

Lines changed: 1 addition & 1 deletion

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ var x = uniform( 100, -1.0, 1.0, {
2626
'dtype': 'float32'
2727
});
2828

29-
logEachMap( 'acosf(%f) = %f', x, acosf );
29+
logEachMap( 'acosf(%0.4f) = %0.4f', x, acosf );

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

Lines changed: 1 addition & 1 deletion

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ var x = uniform( 100, 1.0, 5.0, {
2626
'dtype': 'float64'
2727
});
2828

29-
logEachMap( 'acosh(%f) = %f', x, acosh );
29+
logEachMap( 'acosh(%0.4f) = %0.4f', x, acosh );

0 commit comments

Comments
 (0)