Skip to content

Commit 7652cd5

Browse files
committed
Auto-generated commit
1 parent 5a0e9af commit 7652cd5

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

.github/.keepalive

-1
This file was deleted.

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-11-01)
7+
## Unreleased (2024-11-18)
88

99
<section class="bug-fixes">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`de1ef8b`](https://github.com/stdlib-js/stdlib/commit/de1ef8ba5e2d7dd1363bdf826572456f49b7895c) - **docs:** fix example _(by Athan Reines)_
2526
- [`8f72b43`](https://github.com/stdlib-js/stdlib/commit/8f72b432c0fc81a78641d5689722ecc9671c6f02) - **style:** add missing spaces around parentheses _(by Philipp Burckhardt)_
2627
- [`6feb08f`](https://github.com/stdlib-js/stdlib/commit/6feb08f927a08bc7fbb29a721e04218cbd618200) - **style:** fix missing space _(by Athan Reines)_
2728
- [`583452c`](https://github.com/stdlib-js/stdlib/commit/583452c820523f4bc97b293b4424d0c1bf59fffc) - **fix:** add missing property _(by Athan Reines)_

CONTRIBUTORS

+3
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Mohammad Kaif <[email protected]>
5959
Momtchil Momtchev <[email protected]>
6060
Muhammad Haris <[email protected]>
6161
Naresh Jagadeesan <[email protected]>
62+
Neeraj Pathak <[email protected]>
6263
NightKnight <[email protected]>
6364
Nithin Katta <[email protected]>
6465
Nourhan Hasan <[email protected]>
@@ -69,6 +70,7 @@ Prajwal Kulkarni <[email protected]>
6970
Pranav Goswami <[email protected]>
7071
7172
73+
Pratyush Kumar Chouhan <[email protected]>
7274
7375
Pushpendra Chandravanshi <[email protected]>
7476
@@ -79,6 +81,7 @@ Ridam Garg <[email protected]>
7981
Robert Gislason <[email protected]>
8082
Roman Stetsyk <[email protected]>
8183
84+
Ruthwik Chikoti <[email protected]>
8285
Ryan Seal <[email protected]>
8386
Sai Srikar Dumpeti <[email protected]>
8487
SarthakPaandey <[email protected]>

README.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ Invokes a function once for each array element.
902902

903903
```javascript
904904
function log( v, i ) {
905-
console.log( '%s: %s', i, v.toString() );
905+
console.log( '%s: %s', i.toString(), v.toString() );
906906
}
907907

908908
var arr = new BooleanArray( 3 );
@@ -930,7 +930,7 @@ To set the function execution context, provide a `thisArg`.
930930
```javascript
931931
function fcn( v, i ) {
932932
this.count += 1;
933-
console.log( '%s: %s', i, v.toString() );
933+
console.log( '%s: %s', i.toString(), v.toString() );
934934
}
935935

936936
var arr = new BooleanArray( 3 );
@@ -944,11 +944,6 @@ arr.set( false, 1 );
944944
arr.set( true, 2 );
945945

946946
arr.forEach( fcn, context );
947-
/* =>
948-
0: 1 + 1i
949-
1: 2 + 2i
950-
2: 3 + 3i
951-
*/
952947

953948
var count = context.count;
954949
// returns 3

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"@stdlib/math-base-special-floor": "^0.2.3",
5555
"@stdlib/string-format": "^0.2.2",
5656
"@stdlib/symbol-iterator": "^0.2.2",
57-
"@stdlib/types": "^0.4.1",
57+
"@stdlib/types": "^0.4.3",
5858
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.3",
5959
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2",
6060
"@stdlib/error-tools-fmtprodmsg": "^0.2.2"

0 commit comments

Comments
 (0)