Skip to content

Commit b681ed1

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 5a2afad commit b681ed1

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/stats/base/dists/arcsine/logcdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ var x = uniform( 25, -10.0, 10.0, opts );
136136
var a = uniform( x.length, -20.0, 0.0, opts );
137137
var b = uniform( x.length, 0.0, 40.0, opts );
138138

139-
logEachMap( 'x: %d, a: %d, b: %d, ln(F(x;a,b)): %d', x, a, b, logcdf );
139+
logEachMap( 'x: %0.4f, a: %0.4f, b: %0.4f, ln(F(x;a,b)): %0.4f', x, a, b, logcdf );
140140
```
141141

142142
</section>

lib/node_modules/@stdlib/stats/base/dists/arcsine/logcdf/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ var x = uniform( 25, -10.0, 10.0, opts );
2929
var a = uniform( x.length, -20.0, 0.0, opts );
3030
var b = uniform( x.length, 0.0, 40.0, opts );
3131

32-
logEachMap( 'x: %d, a: %d, b: %d, ln(F(x;a,b)): %d', x, a, b, logcdf );
32+
logEachMap( 'x: %0.4f, a: %0.4f, b: %0.4f, ln(F(x;a,b)): %0.4f', x, a, b, logcdf );

lib/node_modules/@stdlib/stats/base/dists/arcsine/logpdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ var x = uniform( 25, -10.0, 10.0, opts );
136136
var a = uniform( x.length, -20.0, 0.0, opts );
137137
var b = uniform( x.length, 0.0, 40.0, opts );
138138

139-
logEachMap( 'x: %d, a: %d, b: %d, ln(f(x;a,b)): %d', x, a, b, logpdf );
139+
logEachMap( 'x: %0.4f, a: %0.4f, b: %0.4f, ln(f(x;a,b)): %0.4f', x, a, b, logpdf );
140140
```
141141

142142
</section>

lib/node_modules/@stdlib/stats/base/dists/arcsine/logpdf/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ var x = uniform( 25, -10.0, 10.0, opts );
2929
var a = uniform( x.length, -20.0, 0.0, opts );
3030
var b = uniform( x.length, 0.0, 40.0, opts );
3131

32-
logEachMap( 'x: %d, a: %d, b: %d, ln(f(x;a,b)): %d', x, a, b, logpdf );
32+
logEachMap( 'x: %0.4f, a: %0.4f, b: %0.4f, ln(f(x;a,b)): %0.4f', x, a, b, logpdf );

lib/node_modules/@stdlib/stats/base/dists/arcsine/pdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ var x = uniform( 25, -10.0, 10.0, opts );
126126
var a = uniform( x.length, -20.0, 0.0, opts );
127127
var b = uniform( x.length, 0.0, 40.0, opts );
128128

129-
logEachMap( 'x: %d, a: %d, b: %d, f(x;a,b): %d', x, a, b, pdf );
129+
logEachMap( 'x: %0.4f, a: %0.4f, b: %0.4f, f(x;a,b): %0.4f', x, a, b, pdf );
130130
```
131131

132132
</section>

lib/node_modules/@stdlib/stats/base/dists/arcsine/pdf/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ var x = uniform( 25, -10.0, 10.0, opts );
2929
var a = uniform( x.length, -20.0, 0.0, opts );
3030
var b = uniform( x.length, 0.0, 40.0, opts );
3131

32-
logEachMap( 'x: %d, a: %d, b: %d, f(x;a,b): %d', x, a, b, pdf );
32+
logEachMap( 'x: %0.4f, a: %0.4f, b: %0.4f, f(x;a,b): %0.4f', x, a, b, pdf );

0 commit comments

Comments
 (0)