Skip to content

Commit 6fa6fd4

Browse files
committed
fix: apply review 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: 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: passed - 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 --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: passed - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: passed - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: passed - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent a602d5b commit 6fa6fd4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/ext/base/gfill/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ gfill.ndarray( 3, 5.0, x, 1, x.length-3 );
123123
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
124124
var gfill = require( '@stdlib/blas/ext/base/gfill' );
125125

126-
var x = discreteUniform( 10.0, -100, 100, {
126+
var x = discreteUniform( 10, -100, 100, {
127127
'dtype': 'float64'
128128
});
129129
console.log( x );

lib/node_modules/@stdlib/blas/ext/base/gfill/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var gfill = require( './../lib/main.js' );
3131
// VARIABLES //
3232

3333
var options = {
34-
'dtype': 'float64'
34+
'dtype': 'generic'
3535
};
3636

3737

lib/node_modules/@stdlib/blas/ext/base/gfill/benchmark/benchmark.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var gfill = require( './../lib/ndarray.js' );
3131
// VARIABLES //
3232

3333
var options = {
34-
'dtype': 'float64'
34+
'dtype': 'generic'
3535
};
3636

3737

lib/node_modules/@stdlib/blas/ext/base/gfill/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
2222
var gfill = require( './../lib' );
2323

24-
var x = discreteUniform( 10.0, -100, 100, {
24+
var x = discreteUniform( 10, -100, 100, {
2525
'dtype': 'float64'
2626
});
2727
console.log( x );

0 commit comments

Comments
 (0)