File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/ndarray/base/ind2sub Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import { Mode, Order } from '@stdlib/types/ndarray';
3030*
3131* - The function accepts the following "modes":
3232*
33- * - **throw**: throws an error when a linear index exceeds array dimensions.
33+ * - **throw**: throw an error when a linear index exceeds array dimensions.
3434* - **normalize**: normalize negative indices and throw an error when a linear index exceeds array dimensions.
3535* - **wrap**: wrap around a linear index exceeding array dimensions using modulo arithmetic.
3636* - **clamp**: set a linear index exceeding array dimensions to either `0` (minimum linear index) or the maximum linear index.
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ var getSubscripts = require( './assign.js' );
3333*
3434* - The function accepts the following "modes":
3535*
36- * - **throw**: throws an error when a linear index exceeds array dimensions.
36+ * - **throw**: throw an error when a linear index exceeds array dimensions.
3737* - **normalize**: normalize negative indices and throw an error when a linear index exceeds array dimensions.
3838* - **wrap**: wrap around a linear index exceeding array dimensions using modulo arithmetic.
3939* - **clamp**: set a linear index exceeding array dimensions to either `0` (minimum linear index) or the maximum linear index.
You can’t perform that action at this time.
0 commit comments