Skip to content

Commit b26909f

Browse files
Shabareesh ShettyShabareesh Shetty
authored andcommitted
chore: update description
--- 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: na - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent ea8b8b3 commit b26909f

File tree

1 file changed

+6
-6
lines changed
  • lib/node_modules/@stdlib/blas/base/dsyr2k/docs/types

1 file changed

+6
-6
lines changed

lib/node_modules/@stdlib/blas/base/dsyr2k/docs/types/test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ import dsyr2k = require( './index' );
126126
dsyr2k( 'row-major', 'lower', 'no-transpose', 5, 5, ( A: number ): number => A, A, 5, B, 5, 1.0, C, 5 ); // $ExpectError
127127
}
128128

129-
// The compiler throws an error if the function is provided an seventh argument which is not a Float64Array...
129+
// The compiler throws an error if the function is provided a seventh argument which is not a Float64Array...
130130
{
131131
const B = new Float64Array( 25 );
132132
const C = new Float64Array( 25 );
@@ -142,7 +142,7 @@ import dsyr2k = require( './index' );
142142
dsyr2k( 'row-major', 'lower', 'no-transpose', 5, 5, 1.0, ( A: number ): number => A, 5, B, 5, 1.0, C, 5 ); // $ExpectError
143143
}
144144

145-
// The compiler throws an error if the function is provided a eighth argument which is not a number...
145+
// The compiler throws an error if the function is provided an eighth argument which is not a number...
146146
{
147147
const A = new Float64Array( 25 );
148148
const B = new Float64Array( 25 );
@@ -189,7 +189,7 @@ import dsyr2k = require( './index' );
189189
dsyr2k( 'row-major', 'lower', 'no-transpose', 5, 5, 1.0, A, 5, B, ( A: number ): number => A, 1.0, C, 5 ); // $ExpectError
190190
}
191191

192-
// The compiler throws an error if the function is provided a eleventh argument which is not a number...
192+
// The compiler throws an error if the function is provided an eleventh argument which is not a number...
193193
{
194194
const A = new Float64Array( 25 );
195195
const B = new Float64Array( 25 );
@@ -221,7 +221,7 @@ import dsyr2k = require( './index' );
221221
dsyr2k( 'row-major', 'lower', 'no-transpose', 5, 5, 1.0, A, 5, B, 5, 1.0, ( A: number ): number => A, 5 ); // $ExpectError
222222
}
223223

224-
// The compiler throws an error if the function is provided an thirteenth argument which is not a number...
224+
// The compiler throws an error if the function is provided a thirteenth argument which is not a number...
225225
{
226226
const A = new Float64Array( 25 );
227227
const B = new Float64Array( 25 );
@@ -364,7 +364,7 @@ import dsyr2k = require( './index' );
364364
dsyr2k.ndarray( 'lower', 'no-transpose', 5, 5, 1.0, ( A: number ): number => A, 5, 1, 0, B, 5, 1, 0, 1.0, C, 5, 1, 0 ); // $ExpectError
365365
}
366366

367-
// The compiler throws an error if the function is provided an seventh argument which is not a number...
367+
// The compiler throws an error if the function is provided a seventh argument which is not a number...
368368
{
369369
const A = new Float64Array( 25 );
370370
const B = new Float64Array( 25 );
@@ -492,7 +492,7 @@ import dsyr2k = require( './index' );
492492
dsyr2k.ndarray( 'lower', 'no-transpose', 5, 5, 1.0, A, 5, 1, 0, B, 5, 1, 0, ( A: number ): number => A, C, 5, 1, 0 ); // $ExpectError
493493
}
494494

495-
// The compiler throws an error if the function is provided an fifteenth argument which is not a Float64Array...
495+
// The compiler throws an error if the function is provided a fifteenth argument which is not a Float64Array...
496496
{
497497
const A = new Float64Array( 25 );
498498
const B = new Float64Array( 25 );

0 commit comments

Comments
 (0)