Skip to content

Commit e42c993

Browse files
committed
Auto-generated commit
1 parent 5991174 commit e42c993

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

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

8585
<details>
8686

87+
- [`f6e6298`](https://github.com/stdlib-js/stdlib/commit/f6e629859db6d74f91097f8015c9e70514c29d88) - **refactor:** rename internal variable [(#13089)](https://github.com/stdlib-js/stdlib/pull/13089) _(by Philipp Burckhardt)_
88+
- [`e404167`](https://github.com/stdlib-js/stdlib/commit/e404167cf935b4a7a0fbee91b1d25734409cb235) - **refactor:** reorder import statements [(#13078)](https://github.com/stdlib-js/stdlib/pull/13078) _(by stdlib-bot)_
8789
- [`fb7ba7a`](https://github.com/stdlib-js/stdlib/commit/fb7ba7aa301480bcab339b75cc7562966292e365) - **docs:** update namespace table of contents [(#13079)](https://github.com/stdlib-js/stdlib/pull/13079) _(by stdlib-bot)_
8890
- [`dadabba`](https://github.com/stdlib-js/stdlib/commit/dadabba66e44060c40b231ebf1862aa0453e5285) - **chore:** resolve C compiler warnings _(by Athan Reines)_
8991
- [`fa820b3`](https://github.com/stdlib-js/stdlib/commit/fa820b3ef9805587eae34c589ee0cd91f89de1b2) - **chore:** resolve C compiler warning _(by Athan Reines)_

base/dists/pareto-type1/mean/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838

3939
// MODULES //
4040

41-
var mean = require( './main.js' );
41+
var main = require( './main.js' );
4242

4343

4444
// EXPORTS //
4545

46-
module.exports = mean;
46+
module.exports = main;

base/dists/pareto-type1/mode/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838

3939
// MODULES //
4040

41-
var mode = require( './main.js' );
41+
var main = require( './main.js' );
4242

4343

4444
// EXPORTS //
4545

46-
module.exports = mode;
46+
module.exports = main;

strided/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ import dcumin = require( './../../../strided/dcumin' );
2929
import dcuminabs = require( './../../../strided/dcuminabs' );
3030
import distances = require( './../../../strided/distances' );
3131
import dmax = require( './../../../strided/dmax' );
32+
import dmaxSorted = require( './../../../strided/dmax-sorted' );
3233
import dmaxabs = require( './../../../strided/dmaxabs' );
3334
import dmaxabsSorted = require( './../../../strided/dmaxabs-sorted' );
34-
import dmaxSorted = require( './../../../strided/dmax-sorted' );
3535
import dmean = require( './../../../strided/dmean' );
3636
import dmeankbn = require( './../../../strided/dmeankbn' );
3737
import dmeankbn2 = require( './../../../strided/dmeankbn2' );

0 commit comments

Comments
 (0)