Skip to content
Merged
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
3 changes: 2 additions & 1 deletion lib/node_modules/@stdlib/ndarray/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3870,6 +3870,7 @@ interface Namespace {
* @param ndims - number of dimensions in the output array
* @param x - input array
* @param dims - dimension indices
* @param writable - boolean indicating whether a returned array should be writable
* @returns output array
*
* @example
Expand All @@ -3881,7 +3882,7 @@ interface Namespace {
* var shx = x.shape;
* // returns [ 2, 2 ]
*
* var y = ns.spreadDimensions( 5, x, [ 1, 3 ] );
* var y = ns.spreadDimensions( 5, x, [ 1, 3 ], false );
* // returns <ndarray>
*
* var shy = y.shape;
Expand Down
Loading