Skip to content

Commit 573b3c8

Browse files
committed
chore: add proper indentation
--- 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 dfd24f4 commit 573b3c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* Performs one of the matrix-vector operations `x = A*x` or `x = A^T*x`, where `x` is an `N` element vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular matrix.
2525
*
26-
* @param layout storage layout
26+
* @param layout storage layout
2727
* @param uplo specifies whether `A` is an upper or lower triangular matrix
2828
* @param trans specifies whether `A` should be transposed, conjugate-transposed, or not transposed
2929
* @param diag specifies whether `A` has a unit diagonal

lib/node_modules/@stdlib/blas/base/dtrmv/src/dtrmv_cblas.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @param LDA stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
3535
* @param x input vector
3636
* @param strideX `x` stride length
37-
* @return output value
37+
* @return output value
3838
*/
3939
double API_SUFFIX(c_dtrmv)( const CBLAS_LAYOUT layout, const CBLAS_UPLO uplo, const CBLAS_TRANSPOSE trans, const CBLAS_DIAG diag, const CBLAS_INT N, const double *A, const CBLAS_INT LDA, double *x, const CBLAS_INT strideX ) {
4040
return API_SUFFIX(cblas_dtrmv)( layout, uplo, trans, diag, N, A, LDA, x, strideX );

0 commit comments

Comments
 (0)