Skip to content

Commit 3d2d70b

Browse files
committed
Auto-generated commit
1 parent 4ad17d0 commit 3d2d70b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ A total of 1 person contributed to this release. Thank you to this contributor:
9999

100100
<details>
101101

102+
- [`98336f5`](https://github.com/stdlib-js/stdlib/commit/98336f5011237a2d607be003f05060146e55d204) - **docs:** fix comment _(by Athan Reines)_
103+
- [`1e9b650`](https://github.com/stdlib-js/stdlib/commit/1e9b650d29bc3584af013e3ef7d4206dc674b0dd) - **docs:** fix comment _(by Athan Reines)_
102104
- [`a4b312d`](https://github.com/stdlib-js/stdlib/commit/a4b312d7b75231f171b3c475d884e17e350f2856) - **feat:** add `unaryFactory` to namespace _(by Athan Reines)_
103105
- [`4b8fd47`](https://github.com/stdlib-js/stdlib/commit/4b8fd47d1f57a0953e24234cddf56ef81d9e01a5) - **feat:** add `math/array/tools/unary-factory` _(by Athan Reines)_
104106
- [`17a0a25`](https://github.com/stdlib-js/stdlib/commit/17a0a25ecf237da6dcbe7cc0e8f660891b9253aa) - **docs:** fix example _(by Athan Reines)_

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ var x = [ -1.0, 2.0, -3.0, 4.0 ];
118118

119119
// Perform element-wise computation:
120120
var out = f.apply( x );
121-
// returns [ 1.0, 2.0, 3.0, 4.0]
121+
// returns [ 1.0, 2.0, 3.0, 4.0 ]
122122
```
123123

124124
</section>

examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ var x = [ -1.0, 2.0, -3.0, 4.0 ];
4444
// Perform element-wise computation:
4545
var out = f.apply( x );
4646
console.log( out );
47-
// => [ 1.0, 2.0, 3.0, 4.0]
47+
// => [ 1.0, 2.0, 3.0, 4.0 ]

0 commit comments

Comments
 (0)