Skip to content

Commit 32d64c8

Browse files
committed
chore: update doxygen
--- 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: missing_dependencies - 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 19ea8e0 commit 32d64c8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/base/dsyr2/src/dsyr2.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
/**
2525
* Performs the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A` where `α` is a scalar, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric matrix.
2626
*
27-
* @param layout storage layout
28-
* @param uplo specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
27+
* @param layout storage layout
28+
* @param uplo specifies whether the upper or lower triangular part of the symmetric matrix `A` should be referenced
2929
* @param N number of elements along each dimension of `A`
3030
* @param alpha scalar constant
3131
* @param X first input vector

lib/node_modules/@stdlib/blas/base/dsyr2/src/dsyr2_cblas.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Performs the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A` where `α` is a scalar, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric matrix.
2525
*
2626
* @param layout storage layout
27-
* @param uplo specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
27+
* @param uplo specifies whether the upper or lower triangular part of the symmetric matrix `A` should be referenced
2828
* @param N number of elements along each dimension of `A`
2929
* @param alpha scalar constant
3030
* @param x first input vector

lib/node_modules/@stdlib/blas/base/dsyr2/src/dsyr2_ndarray.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* Performs the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A`, using alternative indexing semantics and where `α` is a scalar, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric matrix.
2626
*
27-
* @param uplo specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
27+
* @param uplo specifies whether the upper or lower triangular part of the symmetric matrix `A` should be referenced
2828
* @param N number of elements along each dimension of `A`
2929
* @param alpha scalar constant
3030
* @param X first input vector

0 commit comments

Comments
 (0)