Skip to content

Commit 4ec1d6d

Browse files
committed
docs: minor clean-up
--- 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: na - 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 d3426a4 commit 4ec1d6d

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

lib/node_modules/@stdlib/array/base/flatten2d-by/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ interface Flatten2dBy {
134134
*
135135
* var x = [ [ 1, 2 ], [ 3, 4 ] ];
136136
*
137-
* var out = flatten2dBy( x, [ 2, 2 ], false, new Float64Array( 4 ), 1, 0, scale );
137+
* var out = flatten2dBy.assign( x, [ 2, 2 ], false, new Float64Array( 4 ), 1, 0, scale );
138138
* // returns <Float64Array>[ 2, 4, 6, 8 ]
139139
*
140140
* @example
@@ -146,7 +146,7 @@ interface Flatten2dBy {
146146
*
147147
* var x = [ [ 1, 2 ], [ 3, 4 ] ];
148148
*
149-
* var out = flatten2dBy( x, [ 2, 2 ], true, new Float64Array( 4 ), 1, 0, scale );
149+
* var out = flatten2dBy.assign( x, [ 2, 2 ], true, new Float64Array( 4 ), 1, 0, scale );
150150
* // returns <Float64Array>[ 2, 6, 4, 8 ]
151151
*/
152152
assign<T = unknown, U = unknown, V = unknown, W = unknown>( x: Array2D<T>, shape: Shape2D, colexicographic: boolean, out: Collection<V>, stride: number, offset: number, clbk: Callback<T, U, W>, thisArg?: ThisParameterType<Callback<T, U, W>> ): Collection<U | V>;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/array/base/fliplr4d
2525
*
2626
* @example
27-
* var fliplr = require( '@stdlib/array/base/fliplr4d' );
27+
* var fliplr4d = require( '@stdlib/array/base/fliplr4d' );
2828
*
2929
* var x = [ [ [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ] ] ];
3030
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/array/base/fliplr5d
2525
*
2626
* @example
27-
* var fliplr = require( '@stdlib/array/base/fliplr5d' );
27+
* var fliplr5d = require( '@stdlib/array/base/fliplr5d' );
2828
*
2929
* var x = [ [ [ [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ] ] ] ];
3030
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/array/base/flipud2d
2525
*
2626
* @example
27-
* var flipud = require( '@stdlib/array/base/flipud2d' );
27+
* var flipud2d = require( '@stdlib/array/base/flipud2d' );
2828
*
2929
* var x = [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ];
3030
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/array/base/flipud3d
2525
*
2626
* @example
27-
* var flipud = require( '@stdlib/array/base/flipud3d' );
27+
* var flipud3d = require( '@stdlib/array/base/flipud3d' );
2828
*
2929
* var x = [ [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ] ];
3030
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/array/base/flipud4d
2525
*
2626
* @example
27-
* var flipud = require( '@stdlib/array/base/flipud4d' );
27+
* var flipud4d = require( '@stdlib/array/base/flipud4d' );
2828
*
2929
* var x = [ [ [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ] ] ];
3030
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/array/base/flipud5d
2525
*
2626
* @example
27-
* var flipud = require( '@stdlib/array/base/flipud5d' );
27+
* var flipud5d = require( '@stdlib/array/base/flipud5d' );
2828
*
2929
* var x = [ [ [ [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ] ] ] ];
3030
*

lib/node_modules/@stdlib/array/base/for-each/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ type Callback<T, U, V> = Nullary<V> | Unary<T, V> | Binary<T, V> | Ternary<T, U,
7272
* var toAccessorArray = require( '@stdlib/array/base/to-accessor-array' );
7373
* var log = require( '@stdlib/console/log' );
7474
*
75-
* var x = toAccesorArray( [ 1, 2, 3, 4] );
75+
* var x = toAccessorArray( [ 1, 2, 3, 4] );
7676
*
7777
* // Apply the callback function:
7878
* forEach( x, naryFunction( log, 1 ) );

0 commit comments

Comments
 (0)