Skip to content

Commit d359c41

Browse files
committed
Auto-generated commit
1 parent cd9253f commit d359c41

File tree

11 files changed

+283
-282
lines changed

11 files changed

+283
-282
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -870,6 +870,7 @@ A total of 12 people contributed to this release. Thank you to the following con
870870

871871
<details>
872872

873+
- [`321e49e`](https://github.com/stdlib-js/stdlib/commit/321e49e9965648f1b5eb6a840fe454959af0ec49) - **docs:** add missing periods to list items _(by Philipp Burckhardt)_
873874
- [`3eff7c4`](https://github.com/stdlib-js/stdlib/commit/3eff7c48b5841028d49c159d900b18000c0e9a43) - **docs:** fix comments _(by Athan Reines)_
874875
- [`bc279b5`](https://github.com/stdlib-js/stdlib/commit/bc279b5f310d68ca939e8c03de09ff23fbc4ae68) - **docs:** update related packages sections [(#4485)](https://github.com/stdlib-js/stdlib/pull/4485) _(by stdlib-bot, Philipp Burckhardt)_
875876
- [`7f25676`](https://github.com/stdlib-js/stdlib/commit/7f256762db37ccfb07db2baeda7f5102df5db96c) - **docs:** fix grammar _(by Athan Reines)_

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

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

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)