Skip to content

Commit 254a017

Browse files
committed
refactor: apply suggestions from code review
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent dd68407 commit 254a017

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

lib/node_modules/@stdlib/array/base/linspace2d/docs/repl.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
Array shape.
1717

1818
colexicographic: boolean
19-
Specifies whether the array values should be in colexicographic order
19+
Specifies whether generated array values should be stored in
20+
colexicographic order.
2021

2122
Returns
2223
-------

lib/node_modules/@stdlib/array/base/linspace2d/docs/types/index.d.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@ type Array2D<T> = Array<Array<T>>;
3131
* @param start - first array value
3232
* @param stop - last array value
3333
* @param shape - array shape
34-
* @param colexicographic - specifies whether the array values should be in colexicographic order
34+
* @param colexicographic - specifies whether generated array values should be stored in colexicographic order
3535
* @returns linearly spaced two-dimensional nested numeric array
3636
*
3737
* @example
38-
* var linspace2d = require( '@stdlib/array/base/linspace2d' );
39-
*
4038
* var x = linspace2d( 0, 100, [ 2, 3 ], false );
4139
* // returns [ [ 0, 20, 40 ], [ 60, 80, 100 ] ]
4240
*

lib/node_modules/@stdlib/array/base/linspace2d/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*
2929
* var x = linspace2d( 0, 100, [ 2, 3 ], false );
3030
* // returns [ [ 0, 20, 40 ], [ 60, 80, 100 ] ]
31-
31+
*
3232
* x = linspace2d( 0, 100, [ 2, 3 ], true );
3333
* // returns [ [ 0, 40, 80 ], [ 20, 60, 100 ] ]
3434
*/

lib/node_modules/@stdlib/array/base/linspace2d/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var zeros2d = require( '@stdlib/array/base/zeros2d' );
3131
* @param {number} start - first array value
3232
* @param {number} stop - last array value
3333
* @param {NonNegativeIntegerArray} shape - array shape
34-
* @param {boolean} colexicographic - specifies whether the array values should be in colexicographic order
34+
* @param {boolean} colexicographic - specifies whether generated array values should be stored in colexicographic order
3535
* @returns {Array} linearly spaced two-dimensional nested numeric array
3636
*
3737
* @example

0 commit comments

Comments
 (0)