diff --git a/lib/node_modules/@stdlib/math/tools/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/tools/docs/types/index.d.ts index 40d2c33add58..9baf20b25c5b 100644 --- a/lib/node_modules/@stdlib/math/tools/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/tools/docs/types/index.d.ts @@ -38,7 +38,7 @@ interface Namespace { * @example * var base = require( '@stdlib/math/base/special/abs' ); * var dispatch = require( '@stdlib/ndarray/dispatch' ); - * var ndarrayUnary = require( '@stdlib/ndarray/base/unary' ); + * var ns.unary = require( '@stdlib/ndarray/base/unary' ); * var ndarray2array = require( '@stdlib/ndarray/to-array' ); * var array = require( '@stdlib/ndarray/array' ); * @@ -52,7 +52,7 @@ interface Namespace { * base, * base * ]; - * var dispatcher = dispatch( ndarrayUnary, types, data, 2, 1, 1 ); + * var dispatcher = dispatch( ns.unary, types, data, 2, 1, 1 ); * * var idt = [ 'float64', 'float32', 'generic' ]; * var odt = idt;