Skip to content

Commit 075c674

Browse files
committed
Auto-generated commit
1 parent e91bf56 commit 075c674

5 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/.keepalive

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

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -795,6 +795,8 @@ A total of 44 issues were closed in this release:
795795

796796
<details>
797797

798+
- [`d02089a`](https://github.com/stdlib-js/stdlib/commit/d02089a716cf72e62eb60d54f909f0b439a05196) - **chore:** minor clean-up _(by Philipp Burckhardt)_
799+
- [`18f1915`](https://github.com/stdlib-js/stdlib/commit/18f191560f9322727ee126619e9e083187b64821) - **chore:** minor clean-up _(by Philipp Burckhardt)_
798800
- [`a4a5a00`](https://github.com/stdlib-js/stdlib/commit/a4a5a0071775e446d59fb7eb2553e850f1a84b26) - **bench:** refactor to use string interpolation in `ndarray/base/assign` [(#11019)](https://github.com/stdlib-js/stdlib/pull/11019) _(by Partha Das)_
799801
- [`da4d88c`](https://github.com/stdlib-js/stdlib/commit/da4d88c64f605abb92f06579bbc166cec7cea45d) - **feat:** update `ndarray` TypeScript declarations [(#11084)](https://github.com/stdlib-js/stdlib/pull/11084) _(by stdlib-bot)_
800802
- [`57fc70a`](https://github.com/stdlib-js/stdlib/commit/57fc70a07288fadf02ca0a17dea505e677683c7d) - **docs:** update namespace table of contents [(#11085)](https://github.com/stdlib-js/stdlib/pull/11085) _(by stdlib-bot)_

base/ctor/lib/serialize2string.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ function serialize2string( ctx, method, locales, options ) {
180180
}
181181
}
182182
}
183-
ctor = CTORS[ ctx.dtype ];
183+
ctor = CTORS[ dt ];
184184
str += replace( ctor, '{{data}}', buffer );
185185
str += ', ';
186186

docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3277,7 +3277,7 @@ interface Namespace {
32773277
* @returns string representation
32783278
*
32793279
* @example
3280-
* var array = require( `@stdlib/ndarray/array` );
3280+
* var array = require( './../../array' );
32813281
*
32823282
* var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );
32833283
* // returns <ndarray>

to-locale-string/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import { ndarray } from '@stdlib/types/ndarray';
3535
* @returns string representation
3636
*
3737
* @example
38-
* var array = require( `@stdlib/ndarray/array` );
38+
* var array = require( '@stdlib/ndarray/array' );
3939
*
4040
* var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );
4141
* // returns <ndarray>

0 commit comments

Comments
 (0)