Skip to content

Commit dd35147

Browse files
kgryteNeerajpathak07
authored andcommitted
docs: fix comments
--- 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: 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 83b6c34 commit dd35147

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/array/to-fancy

1 file changed

+2
-2
lines changed

Diff for: lib/node_modules/@stdlib/array/to-fancy/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ var x = [ 1, 2, 3, 4, 5, 6, 7, 8 ];
3737
// Turn the plain array into a "fancy" array:
3838
var y = array2fancy( x );
3939

40-
// Select the first 3 elements:
40+
// Select the first three elements:
4141
var v = y[ ':3' ];
4242
// returns [ 1, 2, 3 ]
4343

4444
// Select every other element, starting from the second element:
4545
v = y[ '1::2' ];
4646
// returns [ 2, 4, 6, 8 ]
4747

48-
// Select every other element, in reverse order, starting with the least element:
48+
// Select every other element, in reverse order, starting with the last element:
4949
v = y[ '::-2' ];
5050
// returns [ 8, 6, 4, 2 ]
5151

0 commit comments

Comments
 (0)