Skip to content

Commit 4a2d0d7

Browse files
committed
Auto-generated commit
1 parent 1c26c45 commit 4a2d0d7

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,8 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191-
192-
# Cursor #
193-
##########
194191
.cursorignore
192+
193+
# AI coding agents #
194+
####################
195+
claude.md

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 (2025-08-20)
7+
## Unreleased (2025-09-06)
88

99
<section class="features">
1010

@@ -100,6 +100,7 @@ A total of 14 issues were closed in this release:
100100

101101
<details>
102102

103+
- [`b44e0a7`](https://github.com/stdlib-js/stdlib/commit/b44e0a71e52944270193e56c6cff4507bb085144) - **docs:** clean-up TSDoc examples _(by Philipp Burckhardt)_
103104
- [`37446e4`](https://github.com/stdlib-js/stdlib/commit/37446e44fbb830ab833c7786c7da13b2eaea27d5) - **feat:** add constants to `float32` namespace _(by Philipp Burckhardt)_
104105
- [`f9651e6`](https://github.com/stdlib-js/stdlib/commit/f9651e6411b4ebd3c95dcc6b46c02e6d5be009fa) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
105106
- [`2c927e4`](https://github.com/stdlib-js/stdlib/commit/2c927e403da0ed8841b6ce19296262a88c9856e0) - **docs:** fix example code in TS declaration files _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <brunofenzl@gmail.com>
4242
Bryan Elee <rxbryn@gmail.com>
4343
Chinmay Joshi <86140365+JawHawk@users.noreply.github.com>
4444
Christopher Dambamuromo <chridam@gmail.com>
45+
DUDHAT HEMIL PRAVINKUMAR <138382078+Hemil36@users.noreply.github.com>
4546
Dan Rose <danoftheroses@gmail.com>
4647
Daniel Hernandez Gomez <156333015+dhernandeez13@users.noreply.github.com>
4748
Daniel Killenberger <daniel.killenberger@gmail.com>
@@ -189,6 +190,7 @@ Sivam Das <100067002+Sivam2313@users.noreply.github.com>
189190
Snehil Shah <snehilshah.989@gmail.com>
190191
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
191192
Spandan Barve <contact@marsian.dev>
193+
Srinivas Batthula <srinivasbatthula05.official@gmail.com>
192194
Stephannie Jiménez Gacha <steff456@hotmail.com>
193195
Suhaib Ilahi <suhaib.elahi87@gmail.com>
194196
Suraj Kumar <125961509+kumarsuraj212003@users.noreply.github.com>

docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ interface Namespace {
258258
*
259259
* @example
260260
* var max = ns.MAX_SAFE_NTH_FACTORIAL;
261-
* // returns 34
261+
* // returns 10
262262
*/
263263
MAX_SAFE_NTH_FACTORIAL: typeof MAX_SAFE_NTH_FACTORIAL;
264264

@@ -339,7 +339,7 @@ interface Namespace {
339339
*
340340
* @example
341341
* var ninf = ns.NINF;
342-
* // returns -infinity
342+
* // returns -Infinity
343343
*/
344344
NINF: typeof NINF;
345345

@@ -375,7 +375,7 @@ interface Namespace {
375375
*
376376
* @example
377377
* var pinf = ns.PINF;
378-
* // returns +infinity
378+
* // returns Infinity
379379
*/
380380
PINF: typeof PINF;
381381

0 commit comments

Comments
 (0)