Skip to content

Commit e987950

Browse files
Merge branch 'develop' of https://github.com/Neerajpathak07/stdlib into develop
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: ---
2 parents e46f507 + ece93c1 commit e987950

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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)