Skip to content

Commit 2b57c13

Browse files
committed
Auto-generated commit
1 parent 85a740e commit 2b57c13

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

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

870870
<details>
871871

872+
- [`32deb11`](https://github.com/stdlib-js/stdlib/commit/32deb11c6a2453748d8db9554b6bb3fdb73a077f) - **docs:** update related packages sections [(#3976)](https://github.com/stdlib-js/stdlib/pull/3976) _(by stdlib-bot)_
872873
- [`feaea9b`](https://github.com/stdlib-js/stdlib/commit/feaea9bf8dbfa4ee372583107972c442109682d6) - **docs:** update descriptions _(by Athan Reines)_
873874
- [`f4eb2ab`](https://github.com/stdlib-js/stdlib/commit/f4eb2ab24e14f4fd5585765a8c303e6398a10958) - **docs:** fix comment _(by Athan Reines)_
874875
- [`00fff89`](https://github.com/stdlib-js/stdlib/commit/00fff89d59d8b6b09d28224ef9a3980e72b6a76c) - **docs:** fix comment _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Dan Rose <[email protected]>
2626
Daniel Killenberger <[email protected]>
2727
Daniel Yu <[email protected]>
2828
Debashis Maharana <[email protected]>
29+
Divyansh Seth <[email protected]>
2930
Dominic Lim <[email protected]>
3031
Dominik Moritz <[email protected]>
3132
Dorrin Sotoudeh <[email protected]>

fixed-endian-factory/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ var out = arr.map( fcn, context );
692692
var count = context.count;
693693
// returns 3;
694694
```
695-
695+
696696
<a name="method-reduce"></a>
697697

698698
#### TypedArray.prototype.reduce( reducerFn\[, initialValue] )
@@ -758,7 +758,7 @@ var arr = new Float64ArrayFE( 'little-endian', [ 1.0, 0.0, 1.0 ] );
758758
var out = arr.reduceRight( reducer );
759759
// returns 0.0
760760
```
761-
761+
762762
The reducer function is provided four arguments:
763763

764764
- **acc**: accumulated result.
@@ -784,7 +784,7 @@ var arr = new Float64ArrayFE( 'little-endian', [ 1.0, 0.0, 1.0 ] );
784784
var out = arr.reduceRight( reducer, 0 );
785785
// returns 2
786786
```
787-
787+
788788
<a name="method-set"></a>
789789

790790
#### TypedArrayFE.prototype.set( arr\[, offset] )
@@ -947,7 +947,7 @@ var out = arr.with( 0, 0.0 );
947947
var v = out.get( 0 );
948948
// returns 0.0
949949
```
950-
950+
951951
</section>
952952

953953
<!-- /.usage -->

0 commit comments

Comments
 (0)