Skip to content

Commit 4de2e5f

Browse files
committed
Auto-generated commit
1 parent bbe6033 commit 4de2e5f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
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 (2025-07-15)
7+
## Unreleased (2025-07-16)
88

99
<section class="features">
1010

@@ -219,6 +219,7 @@ A total of 32 issues were closed in this release:
219219

220220
<details>
221221

222+
- [`5388bba`](https://github.com/stdlib-js/stdlib/commit/5388bba36044d2de93dacb0134c6e5539b02928c) - **chore:** minor clean-up _(by Philipp Burckhardt)_
222223
- [`0b89b56`](https://github.com/stdlib-js/stdlib/commit/0b89b56db0aa040a643ef859ac71795462e947d5) - **feat:** add `hasAlmostEqualValues` to namespace _(by Athan Reines)_
223224
- [`fee6898`](https://github.com/stdlib-js/stdlib/commit/fee68983980c006c27c7f1f5d1f3f11b20602974) - **feat:** add `array/base/assert/has-almost-equal-values` _(by Athan Reines)_
224225
- [`2a0ea7f`](https://github.com/stdlib-js/stdlib/commit/2a0ea7feb22806685fef9eac8a32d7012dab7adc) - **fix:** use correct package names in package.json _(by Philipp Burckhardt)_

base/assert/has-almost-equal-values/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import hasAlmostEqualValues = require( './index' );
2626
{
2727
const x = [ 1, 2, 3 ];
2828

29-
hasAlmostEqualValues( x, x ); // $ExpectType boolean
29+
hasAlmostEqualValues( x, x, 0 ); // $ExpectType boolean
3030
hasAlmostEqualValues( new Float64Array( x ), new Float64Array( x ), 0 ); // $ExpectType boolean
3131
hasAlmostEqualValues( new Float32Array( x ), new Float32Array( x ), 0 ); // $ExpectType boolean
3232
hasAlmostEqualValues( new Int32Array( x ), new Int32Array( x ), 0 ); // $ExpectType boolean

base/assert/has-almost-equal-values/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function internal( x, y, maxULP, fcn ) {
101101
* var x = arraylike2object( toAccessorArray( [ 0, 0, 0, 0 ] ) );
102102
* var y = arraylike2object( toAccessorArray( [ 0, 0, 1, 0 ] ) );
103103
*
104-
* var out = accessors( x, y, 1, assert);
104+
* var out = accessors( x, y, 1, assert );
105105
* // returns false
106106
*/
107107
function accessors( x, y, maxULP, fcn ) {

0 commit comments

Comments
 (0)