Skip to content

Commit d3377ca

Browse files
committed
Auto-generated commit
1 parent deab652 commit d3377ca

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

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

99
<section class="features">
1010

@@ -260,6 +260,7 @@ A total of 36 issues were closed in this release:
260260

261261
<details>
262262

263+
- [`3024bb3`](https://github.com/stdlib-js/stdlib/commit/3024bb37f70bf55295d9c4bf81107ff57c15ff8a) - **docs:** fix section comments and lint errors in `array` and `assert` READMEs _(by Philipp Burckhardt)_
263264
- [`5cad666`](https://github.com/stdlib-js/stdlib/commit/5cad666695971ba8af5bc2392893d1f32687a1f1) - **bench:** refactor to use string interpolation in `array/empty-like` [(#10484)](https://github.com/stdlib-js/stdlib/pull/10484) _(by Aman Singh)_
264265
- [`05e2a72`](https://github.com/stdlib-js/stdlib/commit/05e2a7238d6385111152d041b60e1f27d478db97) - **bench:** refactor to use string interpolation in `array/fixed-endian-float32` [(#10486)](https://github.com/stdlib-js/stdlib/pull/10486) _(by Aman Singh)_
265266
- [`157ea4e`](https://github.com/stdlib-js/stdlib/commit/157ea4e1fe500feee3e8252c9e03162da1b53db7) - **chore:** use relative paths _(by Philipp Burckhardt)_

base/assert/is-accessor-array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ An accessor array is defined as either an [`Array`][mdn-array], [`Typed Array`][
2828

2929
</section>
3030

31-
<!-- ./intro -->
31+
<!-- /.intro -->
3232

3333
<section class="usage">
3434

@@ -125,7 +125,7 @@ bool = isAccessorArray( new Uint8Array( 10 ) );
125125
bool = isAccessorArray( new Uint8ClampedArray( 10 ) );
126126
// returns false
127127

128-
bool = isAccessorArray( { 'length': 0 } );
128+
bool = isAccessorArray({ 'length': 0 });
129129
// returns false
130130
```
131131

base/assert/is-booleanarray/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626

2727
</section>
2828

29-
<!-- ./intro -->
29+
<!-- /.intro -->
3030

3131
<section class="usage">
3232

@@ -124,7 +124,7 @@ bool = isBooleanArray( new Uint8Array( 10 ) );
124124
bool = isBooleanArray( new Uint8ClampedArray( 10 ) );
125125
// returns false
126126

127-
bool = isBooleanArray( { 'length': 0 } );
127+
bool = isBooleanArray({ 'length': 0 });
128128
// returns false
129129
```
130130

base/assert/is-complex-typed-array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626

2727
</section>
2828

29-
<!-- ./intro -->
29+
<!-- /.intro -->
3030

3131
<section class="usage">
3232

@@ -120,7 +120,7 @@ bool = isComplexTypedArray( new Uint8Array( 10 ) );
120120
bool = isComplexTypedArray( new Uint8ClampedArray( 10 ) );
121121
// returns false
122122

123-
bool = isComplexTypedArray( { 'length': 0 } );
123+
bool = isComplexTypedArray({ 'length': 0 });
124124
// returns false
125125
```
126126

base/assert/is-complex128array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626

2727
</section>
2828

29-
<!-- ./intro -->
29+
<!-- /.intro -->
3030

3131
<section class="usage">
3232

@@ -120,7 +120,7 @@ bool = isComplex128Array( new Uint8Array( 10 ) );
120120
bool = isComplex128Array( new Uint8ClampedArray( 10 ) );
121121
// returns false
122122

123-
bool = isComplex128Array( { 'length': 0 } );
123+
bool = isComplex128Array({ 'length': 0 });
124124
// returns false
125125
```
126126

base/assert/is-complex64array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626

2727
</section>
2828

29-
<!-- ./intro -->
29+
<!-- /.intro -->
3030

3131
<section class="usage">
3232

@@ -120,7 +120,7 @@ bool = isComplex64Array( new Uint8Array( 10 ) );
120120
bool = isComplex64Array( new Uint8ClampedArray( 10 ) );
121121
// returns false
122122

123-
bool = isComplex64Array( { 'length': 0 } );
123+
bool = isComplex64Array({ 'length': 0 });
124124
// returns false
125125
```
126126

0 commit comments

Comments
 (0)