Skip to content

Commit 171a6d4

Browse files
committed
Fix ordering of exports
1 parent 7ed4a73 commit 171a6d4

File tree

1 file changed

+6
-6
lines changed
  • lib/node_modules/@stdlib/math/lib

1 file changed

+6
-6
lines changed

lib/node_modules/@stdlib/math/lib/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,22 @@ var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
3737
var ns = {};
3838

3939
/**
40-
* @name base
40+
* @name constants
4141
* @memberof ns
4242
* @readonly
4343
* @type {Namespace}
44-
* @see {@link module:@stdlib/math/base}
44+
* @see {@link module:@stdlib/constants/math}
4545
*/
46-
setReadOnly( ns, 'base', require( '@stdlib/math/base' ) );
46+
setReadOnly( ns, 'constants', require( '@stdlib/constants/math' ) );
4747

4848
/**
49-
* @name constants
49+
* @name base
5050
* @memberof ns
5151
* @readonly
5252
* @type {Namespace}
53-
* @see {@link module:@stdlib/constants/math}
53+
* @see {@link module:@stdlib/math/base}
5454
*/
55-
setReadOnly( ns, 'constants', require( '@stdlib/constants/math' ) );
55+
setReadOnly( ns, 'base', require( '@stdlib/math/base' ) );
5656

5757
/**
5858
* @name utils

0 commit comments

Comments
 (0)