Skip to content

Commit 1f692ff

Browse files
committed
docs: add note and fix note
--- 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: passed - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - 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 da6bf00 commit 1f692ff

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

lib/node_modules/@stdlib/array/base/fill/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ var bool = ( out === x );
7272
7373
- If provided an array-like object without a `fill` method, the function manually sets input array elements to a provided fill value.
7474
75-
- Negative start and end indices are resolved to positive indices by counting from the end of the array with `-1` corresponding to the last indexed element.
75+
- Negative `start` and `end` indices are resolved to positive indices by counting from the end of the array with `-1` corresponding to the last indexed element.
7676
7777
- The function **mutates** the input array.
7878

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,13 @@
88

99
x.fill( value, start, end )
1010

11-
If provided an array-like object without a `value` method, the function
11+
If provided an array-like object without a `fill` method, the function
1212
manually sets input array elements to the specified value.
1313

14+
Negative `start` and `end` indices are resolved to positive indices by
15+
counting from the end of the array with `-1` corresponding to the last
16+
indexed element.
17+
1418
Parameters
1519
----------
1620
x: ArrayLikeObject

0 commit comments

Comments
 (0)