@@ -28,7 +28,7 @@ import logspace = require( '@stdlib/math/utils/logspace' );
2828/**
2929* Interface describing the `utils` namespace.
3030*/
31- interface Utils {
31+ interface Namespace {
3232 /**
3333 * Generates a linearly spaced numeric array using a provided increment.
3434 *
@@ -39,7 +39,7 @@ interface Utils {
3939 * @returns linearly spaced numeric array
4040 *
4141 * @example
42- * var arr = incrspace( 0, 11, 2 );
42+ * var arr = ns. incrspace( 0, 11, 2 );
4343 * // returns [ 0, 2, 4, 6, 8, 10 ]
4444 */
4545 incrspace : typeof incrspace ;
@@ -54,7 +54,7 @@ interface Utils {
5454 * @returns linearly spaced numeric array
5555 *
5656 * @example
57- * var arr = linspace( 0, 100, 6 );
57+ * var arr = ns. linspace( 0, 100, 6 );
5858 * // returns [ 0, 20, 40, 60, 80, 100 ]
5959 */
6060 linspace : typeof linspace ;
@@ -69,7 +69,7 @@ interface Utils {
6969 * @returns logarithmically spaced numeric array
7070 *
7171 * @example
72- * var arr = logspace( 0, 2, 6 );
72+ * var arr = ns. logspace( 0, 2, 6 );
7373 * // returns [ 1, ~2.5, ~6.31, ~15.85, ~39.81, 100 ]
7474 */
7575 logspace : typeof logspace ;
@@ -78,9 +78,9 @@ interface Utils {
7878/**
7979* Standard library generic mathematical utilities.
8080*/
81- declare var utils : Utils ;
81+ declare var ns : Namespace ;
8282
8383
8484// EXPORTS //
8585
86- export = utils ;
86+ export = ns ;
0 commit comments