Skip to content

Commit a11c94a

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: passed - 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: na - task: lint_license_headers status: passed ---
1 parent db553a9 commit a11c94a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/blas/base/zher2/test/test.ndarray.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ tape( 'the function throws an error if provided an invalid twelfth argument', fu
218218
}
219219
});
220220

221-
tape( 'the function performs the hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A` (row-major, lower)', function test( t ) {
221+
tape( 'the function performs the hermitian rank 2 operation `A = α*x*y^H + conjg( α )*y*x^H + A` (row-major, lower)', function test( t ) {
222222
var expected;
223223
var alpha;
224224
var data;
@@ -243,7 +243,7 @@ tape( 'the function performs the hermitian rank 2 operation `A = α*x*y**H + con
243243
t.end();
244244
});
245245

246-
tape( 'the function performs the hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A` (column-major, lower)', function test( t ) {
246+
tape( 'the function performs the hermitian rank 2 operation `A = α*x*y^H + conjg( α )*y*x^H + A` (column-major, lower)', function test( t ) {
247247
var expected;
248248
var alpha;
249249
var data;
@@ -268,7 +268,7 @@ tape( 'the function performs the hermitian rank 2 operation `A = α*x*y**H + con
268268
t.end();
269269
});
270270

271-
tape( 'the function performs the hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A` (column-major, upper)', function test( t ) {
271+
tape( 'the function performs the hermitian rank 2 operation `A = α*x*y^H + conjg( α )*y*x^H + A` (column-major, upper)', function test( t ) {
272272
var expected;
273273
var alpha;
274274
var data;
@@ -293,7 +293,7 @@ tape( 'the function performs the hermitian rank 2 operation `A = α*x*y**H + con
293293
t.end();
294294
});
295295

296-
tape( 'the function performs the hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A` (row-major, upper)', function test( t ) {
296+
tape( 'the function performs the hermitian rank 2 operation `A = α*x*y^H + conjg( α )*y*x^H + A` (row-major, upper)', function test( t ) {
297297
var expected;
298298
var alpha;
299299
var data;

lib/node_modules/@stdlib/blas/base/zher2/test/test.zher2.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ tape( 'the function throws an error if provided an invalid tenth argument', func
210210
}
211211
});
212212

213-
tape( 'the function performs hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A` (row-major, lower)', function test( t ) {
213+
tape( 'the function performs hermitian rank 2 operation `A = α*x*y^H + conjg( α )*y*x^H + A` (row-major, lower)', function test( t ) {
214214
var expected;
215215
var alpha;
216216
var data;
@@ -235,7 +235,7 @@ tape( 'the function performs hermitian rank 2 operation `A = α*x*y**H + conjg(
235235
t.end();
236236
});
237237

238-
tape( 'the function performs hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A` (column-major, lower)', function test( t ) {
238+
tape( 'the function performs hermitian rank 2 operation `A = α*x*y^H + conjg( α )*y*x^H + A` (column-major, lower)', function test( t ) {
239239
var expected;
240240
var alpha;
241241
var data;
@@ -260,7 +260,7 @@ tape( 'the function performs hermitian rank 2 operation `A = α*x*y**H + conjg(
260260
t.end();
261261
});
262262

263-
tape( 'the function performs hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A` (row-major, upper)', function test( t ) {
263+
tape( 'the function performs hermitian rank 2 operation `A = α*x*y^H + conjg( α )*y*x^H + A` (row-major, upper)', function test( t ) {
264264
var expected;
265265
var alpha;
266266
var data;
@@ -285,7 +285,7 @@ tape( 'the function performs hermitian rank 2 operation `A = α*x*y**H + conjg(
285285
t.end();
286286
});
287287

288-
tape( 'the function performs hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A` (column-major, upper)', function test( t ) {
288+
tape( 'the function performs hermitian rank 2 operation `A = α*x*y^H + conjg( α )*y*x^H + A` (column-major, upper)', function test( t ) {
289289
var expected;
290290
var alpha;
291291
var data;

0 commit comments

Comments
 (0)