Skip to content

Commit 445837e

Browse files
committed
docs: fix TSDoc example annotations and remove unwanted parenthesis
--- 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: na - 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: passed - task: lint_license_headers status: passed ---
1 parent 47e33c0 commit 445837e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

lib/node_modules/@stdlib/stats/base/cumax/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ interface Routine {
9595
* // y => [ 1.0, 1.0, 2.0 ]
9696
*
9797
* @example
98-
* var x = [ 1.0, -2.0, 2.0 ] );
98+
* var x = [ 1.0, -2.0, 2.0 ];
9999
* var y = [ 0.0, 0.0, 0.0 ];
100100
*
101101
* cumax.ndarray( x.length, x, 1, 0, y, 1, 0 );

lib/node_modules/@stdlib/stats/base/cumin/docs/types/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ interface Routine {
5151
* var y = [ 0.0, 0.0, 0.0 ];
5252
*
5353
* cumin( x.length, x, 1, y, 1 );
54-
* // y => [ 1.0, 1.0, 2.0 ]
54+
* // y => [ 1.0, -2.0, -2.0 ]
5555
*/
5656
<T extends OutputArray>( N: number, x: InputArray, strideX: number, y: T, strideY: number ): T;
5757

@@ -72,7 +72,7 @@ interface Routine {
7272
* var y = [ 0.0, 0.0, 0.0 ];
7373
*
7474
* cumin.ndarray( x.length, x, 1, 0, y, 1, 0 );
75-
* // y => [ 1.0, 1.0, 2.0 ]
75+
* // y => [ 1.0, -2.0, -2.0 ]
7676
*/
7777
ndarray<T extends OutputArray>( N: number, x: InputArray, strideX: number, offsetX: number, y: T, strideY: number, offsetY: number ): T;
7878
}
@@ -92,14 +92,14 @@ interface Routine {
9292
* var y = [ 0.0, 0.0, 0.0 ];
9393
*
9494
* cumin( x.length, x, 1, y, 1 );
95-
* // y => [ 1.0, 1.0, 2.0 ]
95+
* // y => [ 1.0, -2.0, -2.0 ]
9696
*
9797
* @example
98-
* var x = [ 1.0, -2.0, 2.0 ] );
98+
* var x = [ 1.0, -2.0, 2.0 ];
9999
* var y = [ 0.0, 0.0, 0.0 ];
100100
*
101101
* cumin.ndarray( x.length, x, 1, 0, y, 1, 0 );
102-
* // y => [ 1.0, 1.0, 2.0 ]
102+
* // y => [ 1.0, -2.0, -2.0 ]
103103
*/
104104
declare var cumin: Routine;
105105

lib/node_modules/@stdlib/stats/base/cuminabs/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ interface Routine {
9595
* // y => [ 1.0, 1.0, 1.0 ]
9696
*
9797
* @example
98-
* var x = [ 1.0, -2.0, 2.0 ] );
98+
* var x = [ 1.0, -2.0, 2.0 ];
9999
* var y = [ 0.0, 0.0, 0.0 ];
100100
*
101101
* cuminabs.ndarray( x.length, x, 1, 0, y, 1, 0 );

0 commit comments

Comments
 (0)