Skip to content

Commit 2153a1f

Browse files
committed
chore: update repl.txt
--- 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: 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 ec6dcd1 commit 2153a1f

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/array/base/to-inserted-at/docs

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/array/base/to-inserted-at/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
> {{alias}}( x, 0, 5 )
2929
[ 5, 1, 2, 3, 4 ]
3030
> {{alias}}( x, -1, 6 )
31-
[ 1, 2, 3, 4, 6 ]
31+
[ 1, 2, 3, 6, 4 ]
3232
> x
3333
[ 1, 2, 3, 4 ]
3434

3535

3636
{{alias}}.assign( x, index, value, out, stride, offset )
37-
Copies elements from one array to another array and inserts the element at the
38-
specified index to a provided value.
37+
Copies elements from one array to another array and inserts the element at
38+
the specified index to a provided value.
3939

4040
Negative indices are resolved relative to the last array element, with the
4141
last element corresponding to `-1`.

0 commit comments

Comments
 (0)