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

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Mohammad Kaif <98884589+Kaif987@users.noreply.github.com>
5959
Momtchil Momtchev <momtchil@momtchev.com>
6060
Muhammad Haris <harriskhan047@outlook.com>
6161
Naresh Jagadeesan <naresh.naresh000@gmail.com>
62+
Neeraj Pathak <neerajrpathak710@gmail.com>
6263
NightKnight <Ahmedatwa866@yahoo.com>
6364
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
6465
Nourhan Hasan <109472010+TheNourhan@users.noreply.github.com>
@@ -69,6 +70,7 @@ Prajwal Kulkarni <prajwalkulkarni76@gmail.com>
6970
Pranav Goswami <goswami.4@iitj.ac.in>
7071
Praneki <97080887+PraneGIT@users.noreply.github.com>
7172
Pratik <97464067+Pratik772846@users.noreply.github.com>
73+
Pratyush Kumar Chouhan <pratyushkumar0308@gmail.com>
7274
Priyansh <88396544+itsspriyansh@users.noreply.github.com>
7375
Pushpendra Chandravanshi <pushpendrachandravanshi4@gmail.com>
7476
RISHAV <115060907+rishav2404@users.noreply.github.com>
@@ -79,6 +81,7 @@ Ridam Garg <67867319+RidamGarg@users.noreply.github.com>
7981
Robert Gislason <gztown2216@yahoo.com>
8082
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
8183
Rutam <138517416+performant23@users.noreply.github.com>
84+
Ruthwik Chikoti <145591715+ruthwikchikoti@users.noreply.github.com>
8285
Ryan Seal <splrk@users.noreply.github.com>
8386
Sai Srikar Dumpeti <80447788+the-r3aper7@users.noreply.github.com>
8487
SarthakPaandey <145528240+SarthakPaandey@users.noreply.github.com>

README.md

Lines changed: 2 additions & 7 deletions
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

Lines changed: 1 addition & 1 deletion
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)