Skip to content

Commit f0a52df

Browse files
committed
Auto-generated commit
1 parent 7b61a78 commit f0a52df

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

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 (2026-04-26)
7+
## Unreleased (2026-04-28)
88

99
<section class="features">
1010

@@ -731,6 +731,7 @@ A total of 96 issues were closed in this release:
731731

732732
<details>
733733

734+
- [`d689d2d`](https://github.com/stdlib-js/stdlib/commit/d689d2dcba1570eedbbe3b7689dcbe1921ba11eb) - **chore:** propagate `node/` -> `n/` eslint plugin prefix update across README directives [(#11826)](https://github.com/stdlib-js/stdlib/pull/11826) _(by Philipp Burckhardt)_
734735
- [`39c4de7`](https://github.com/stdlib-js/stdlib/commit/39c4de75a25292c00909cda17a7cb055113e608e) - **bench:** refactor to use string interpolation in `math/base/special` [(#11390)](https://github.com/stdlib-js/stdlib/pull/11390) _(by Karan Anand)_
735736
- [`0dc62ae`](https://github.com/stdlib-js/stdlib/commit/0dc62ae39a4817ff888e9736c3ea599f6beff4e5) - **build:** replace `eslint-plugin-node` with `eslint-plugin-n` [(#10952)](https://github.com/stdlib-js/stdlib/pull/10952) _(by Philipp Burckhardt, Athan Reines)_
736737
- [`a092ede`](https://github.com/stdlib-js/stdlib/commit/a092edebd55a2514135088f5261375e8f83fdcde) - **test:** migrate `math/base/special/binomcoeff` to ULP-based testing [(#11720)](https://github.com/stdlib-js/stdlib/pull/11720) _(by Mandeep2333, Athan Reines)_

base/tools/continued-fraction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Evaluates the continued fraction described by the supplied `generator` argument.
4949

5050
Using an ES6 [Generator object][es6-generator]:
5151

52-
<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
52+
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->
5353

5454
```javascript
5555
// Continued fraction for (e-1)^(-1):
@@ -171,7 +171,7 @@ function generator() {
171171

172172
## Examples
173173

174-
<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
174+
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->
175175

176176
<!-- eslint no-undef: "error" -->
177177

base/tools/sum-series/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Computes the sum of the series given by the supplied `generator` argument. `gene
3636

3737
Using an ES6 [Generator object][es6-generator]:
3838

39-
<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
39+
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->
4040

4141
```javascript
4242
var pow = require( '@stdlib/math/base/special/pow' );
@@ -150,7 +150,7 @@ function geometricSeriesClosure( x ) {
150150

151151
## Examples
152152

153-
<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
153+
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->
154154

155155
<!-- eslint no-undef: "error" -->
156156

0 commit comments

Comments
 (0)