Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/tools/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Interface describing the `tools` namespace.
*/
interface Namespace {
/**

Check failure on line 29 in lib/node_modules/@stdlib/math/tools/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Encountered an error while running example code: Unexpected token '.'
* Returns a function which performs element-wise computation.
*
* @param fcn - function applies a unary function to each element in an ndarray
Expand All @@ -38,7 +38,7 @@
* @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' );
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Planeshifter Looks like we are still having alias issues.

* var ndarray2array = require( '@stdlib/ndarray/to-array' );
* var array = require( '@stdlib/ndarray/array' );
*
Expand All @@ -52,7 +52,7 @@
* 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;
Expand Down
Loading