Skip to content

Commit 4f2384c

Browse files
committed
chore: fix spelling
--- 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: passed - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - 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 5682699 commit 4f2384c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/array/base/scattered/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The function supports broadcasting a `values` array containing a single
77
element against an `indices` array containing one or more elements.
88

9-
If `indices` is an empty array, the function returns a zero-filed array.
9+
If `indices` is an empty array, the function returns a zero-filled array.
1010

1111
Parameters
1212
----------

lib/node_modules/@stdlib/array/base/scattered/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ tape( 'the function scatters elements to a new array (broadcasting)', function t
120120
t.end();
121121
});
122122

123-
tape( 'the function returns a zero-filed array if provided a second argument which is empty', function test( t ) {
123+
tape( 'the function returns a zero-filled array if provided a second argument which is empty', function test( t ) {
124124
var actual;
125125

126126
actual = scattered( 4, [], [ 5, 6, 7, 8 ], 'throw' );

0 commit comments

Comments
 (0)