Skip to content

Commit 321e49e

Browse files
committed
docs: add missing periods to list items
--- 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 --- --- 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: passed - 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 ---
1 parent 6b3a77d commit 321e49e

File tree

66 files changed

+475
-475
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+475
-475
lines changed

lib/node_modules/@stdlib/array/base/cuevery-by-right/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ var bool = ( out === y );
6666

6767
The invoked `predicate` function is provided three arguments:
6868

69-
- **value**: collection element,
70-
- **index**: collection index,
71-
- **collection**: input collection,
69+
- **value**: collection element.
70+
- **index**: collection index.
71+
- **collection**: input collection.
7272

7373
To set the function execution context, provide a `thisArg`.
7474

lib/node_modules/@stdlib/array/float32/README.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ var arr = Float32Array.from( [ 1.0, 2.0 ], mapFcn );
233233

234234
A callback function is provided two arguments:
235235

236-
- `value`: source value
237-
- `index`: source index
236+
- `value`: source value.
237+
- `index`: source index.
238238

239239
To set the callback execution context, provide a `thisArg`.
240240

@@ -371,9 +371,9 @@ var bool = arr.every( predicate );
371371

372372
A `predicate` function is provided three arguments:
373373

374-
- `value`: array element
375-
- `index`: array index
376-
- `arr`: array on which the method is invoked
374+
- `value`: array element.
375+
- `index`: array index.
376+
- `arr`: array on which the method is invoked.
377377

378378
To set the callback execution context, provide a `thisArg`.
379379

@@ -490,9 +490,9 @@ var arr2 = arr1.filter( predicate );
490490

491491
A `predicate` function is provided three arguments:
492492

493-
- `value`: array element
494-
- `index`: array index
495-
- `arr`: array on which the method is invoked
493+
- `value`: array element.
494+
- `index`: array index.
495+
- `arr`: array on which the method is invoked.
496496

497497
To set the callback execution context, provide a `thisArg`.
498498

@@ -552,9 +552,9 @@ var v = arr.find( predicate );
552552

553553
A `predicate` function is provided three arguments:
554554

555-
- `value`: array element
556-
- `index`: array index
557-
- `arr`: array on which the method is invoked
555+
- `value`: array element.
556+
- `index`: array index.
557+
- `arr`: array on which the method is invoked.
558558

559559
To set the callback execution context, provide a `thisArg`.
560560

@@ -615,9 +615,9 @@ var idx = arr.findIndex( predicate );
615615

616616
A `predicate` function is provided three arguments:
617617

618-
- `value`: array element
619-
- `index`: array index
620-
- `arr`: array on which the method is invoked
618+
- `value`: array element.
619+
- `index`: array index.
620+
- `arr`: array on which the method is invoked.
621621

622622
To set the callback execution context, provide a `thisArg`.
623623

@@ -670,9 +670,9 @@ console.log( str );
670670

671671
The callback is provided three arguments:
672672

673-
- `value`: array element
674-
- `index`: array index
675-
- `arr`: array on which the method is invoked
673+
- `value`: array element.
674+
- `index`: array index.
675+
- `arr`: array on which the method is invoked.
676676

677677
To set the callback execution context, provide a `thisArg`.
678678

@@ -893,9 +893,9 @@ var arr2 = arr1.map( fcn );
893893

894894
A callback is provided three arguments:
895895

896-
- `value`: array element
897-
- `index`: array index
898-
- `arr`: array on which the method is invoked
896+
- `value`: array element.
897+
- `index`: array index.
898+
- `arr`: array on which the method is invoked.
899899

900900
To set the callback execution context, provide a `thisArg`.
901901

@@ -957,10 +957,10 @@ var v = arr.reduce( fcn, 0.0 );
957957

958958
A callback is provided four arguments:
959959

960-
- `acc`: accumulated result
961-
- `value`: array element
962-
- `index`: array index
963-
- `arr`: array on which the method is invoked
960+
- `acc`: accumulated result.
961+
- `value`: array element.
962+
- `index`: array index.
963+
- `arr`: array on which the method is invoked.
964964

965965
<a name="method-reduce-right"></a>
966966

@@ -1000,10 +1000,10 @@ var v = arr.reduce( fcn, 0.0 );
10001000

10011001
A callback is provided four arguments:
10021002

1003-
- `acc`: accumulated result
1004-
- `value`: array element
1005-
- `index`: array index
1006-
- `arr`: array on which the method is invoked
1003+
- `acc`: accumulated result.
1004+
- `value`: array element.
1005+
- `index`: array index.
1006+
- `arr`: array on which the method is invoked.
10071007

10081008
<a name="method-reverse"></a>
10091009

@@ -1176,9 +1176,9 @@ var bool = arr.some( predicate );
11761176

11771177
A `predicate` function is provided three arguments:
11781178

1179-
- `value`: array element
1180-
- `index`: array index
1181-
- `arr`: array on which the method is invoked
1179+
- `value`: array element.
1180+
- `index`: array index.
1181+
- `arr`: array on which the method is invoked.
11821182

11831183
To set the callback execution context, provide a `thisArg`.
11841184

lib/node_modules/@stdlib/array/float64/README.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ var arr = Float64Array.from( [ 1.0, -1.0 ], mapFcn );
229229

230230
A callback function is provided two arguments:
231231

232-
- `value`: source value
233-
- `index`: source index
232+
- `value`: source value.
233+
- `index`: source index.
234234

235235
To set the callback execution context, provide a `thisArg`.
236236

@@ -363,9 +363,9 @@ var bool = arr.every( predicate );
363363

364364
A `predicate` function is provided three arguments:
365365

366-
- `value`: array element
367-
- `index`: array index
368-
- `arr`: array on which the method is invoked
366+
- `value`: array element.
367+
- `index`: array index.
368+
- `arr`: array on which the method is invoked.
369369

370370
To set the callback execution context, provide a `thisArg`.
371371

@@ -482,9 +482,9 @@ var arr2 = arr1.filter( predicate );
482482

483483
A `predicate` function is provided three arguments:
484484

485-
- `value`: array element
486-
- `index`: array index
487-
- `arr`: array on which the method is invoked
485+
- `value`: array element.
486+
- `index`: array index.
487+
- `arr`: array on which the method is invoked.
488488

489489
To set the callback execution context, provide a `thisArg`.
490490

@@ -544,9 +544,9 @@ var v = arr.find( predicate );
544544

545545
A `predicate` function is provided three arguments:
546546

547-
- `value`: array element
548-
- `index`: array index
549-
- `arr`: array on which the method is invoked
547+
- `value`: array element.
548+
- `index`: array index.
549+
- `arr`: array on which the method is invoked.
550550

551551
To set the callback execution context, provide a `thisArg`.
552552

@@ -607,9 +607,9 @@ var idx = arr.findIndex( predicate );
607607

608608
A `predicate` function is provided three arguments:
609609

610-
- `value`: array element
611-
- `index`: array index
612-
- `arr`: array on which the method is invoked
610+
- `value`: array element.
611+
- `index`: array index.
612+
- `arr`: array on which the method is invoked.
613613

614614
To set the callback execution context, provide a `thisArg`.
615615

@@ -662,9 +662,9 @@ console.log( str );
662662

663663
The callback is provided three arguments:
664664

665-
- `value`: array element
666-
- `index`: array index
667-
- `arr`: array on which the method is invoked
665+
- `value`: array element.
666+
- `index`: array index.
667+
- `arr`: array on which the method is invoked.
668668

669669
To set the callback execution context, provide a `thisArg`.
670670

@@ -885,9 +885,9 @@ var arr2 = arr1.map( fcn );
885885

886886
A callback is provided three arguments:
887887

888-
- `value`: array element
889-
- `index`: array index
890-
- `arr`: array on which the method is invoked
888+
- `value`: array element.
889+
- `index`: array index.
890+
- `arr`: array on which the method is invoked.
891891

892892
To set the callback execution context, provide a `thisArg`.
893893

@@ -949,10 +949,10 @@ var v = arr.reduce( fcn, 0.0 );
949949

950950
A callback is provided four arguments:
951951

952-
- `acc`: accumulated result
953-
- `value`: array element
954-
- `index`: array index
955-
- `arr`: array on which the method is invoked
952+
- `acc`: accumulated result.
953+
- `value`: array element.
954+
- `index`: array index.
955+
- `arr`: array on which the method is invoked.
956956

957957
<a name="method-reduce-right"></a>
958958

@@ -992,10 +992,10 @@ var v = arr.reduce( fcn, 0.0 );
992992

993993
A callback is provided four arguments:
994994

995-
- `acc`: accumulated result
996-
- `value`: array element
997-
- `index`: array index
998-
- `arr`: array on which the method is invoked
995+
- `acc`: accumulated result.
996+
- `value`: array element.
997+
- `index`: array index.
998+
- `arr`: array on which the method is invoked.
999999

10001000
<a name="method-reverse"></a>
10011001

@@ -1168,9 +1168,9 @@ var bool = arr.some( predicate );
11681168

11691169
A `predicate` function is provided three arguments:
11701170

1171-
- `value`: array element
1172-
- `index`: array index
1173-
- `arr`: array on which the method is invoked
1171+
- `value`: array element.
1172+
- `index`: array index.
1173+
- `arr`: array on which the method is invoked.
11741174

11751175
To set the callback execution context, provide a `thisArg`.
11761176

0 commit comments

Comments
 (0)