Skip to content

Commit 2ec67b4

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents cc2fa9a + cb3e6c3 commit 2ec67b4

File tree

6 files changed

+3353
-94
lines changed

6 files changed

+3353
-94
lines changed

lib/node_modules/@stdlib/_tools/bundle/pkg-list/lib/to_flat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var debug = logger( 'bundle-pkg-list:to-flat-namespace' );
4848
* ];
4949
*
5050
* var out = toFlat( pkgs );
51-
* // e.g., returns [ [ 'base.erf', '@stdlib/math/base/special/erf' ], [ 'base.erf', '@stdib/math/base/special/erf' ], [ 'tape', 'tape' ] ]
51+
* // e.g., returns [ [ 'base.erf', '@stdlib/math/base/special/erf' ], [ 'base.erfc', '@stdib/math/base/special/erfc' ], [ 'tape', 'tape' ] ]
5252
*/
5353
function toFlat( pkgs ) {
5454
var keys;

lib/node_modules/@stdlib/_tools/bundle/pkg-list/lib/to_tree.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var RE_SCOPED = /(@.+?\/)/;
4949
* ];
5050
*
5151
* var out = toTree( pkgs );
52-
* // e.g., returns [ [ 'math.base.special.erf', '@stdlib/math/base/special/erf' ], [ 'math.base.special.erf', '@stdib/math/base/special/erf' ], [ 'tape', 'tape' ] ]
52+
* // e.g., returns [ [ 'math.base.special.erf', '@stdlib/math/base/special/erf' ], [ 'math.base.special.erfc', '@stdib/math/base/special/erfc' ], [ 'tape', 'tape' ] ]
5353
*/
5454
function toTree( pkgs ) {
5555
var alias;

0 commit comments

Comments
 (0)