Skip to content

Commit edcb3f2

Browse files
committed
docs: fix parameter name in Doxygen comment and error messages
--- 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: passed - 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 3878734 commit edcb3f2

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ void API_SUFFIX(c_dgemv)( const CBLAS_LAYOUT layout, const CBLAS_TRANSPOSE trans
6666
return;
6767
}
6868
if ( strideX == 0 ) {
69-
c_xerbla( 9, "c_dgemv", "Error: invalid argument. Ninth argument must be a nonzero. Value: `%d`.", strideX );
69+
c_xerbla( 9, "c_dgemv", "Error: invalid argument. Ninth argument must be nonzero. Value: `%d`.", strideX );
7070
return;
7171
}
7272
if ( strideY == 0 ) {
73-
c_xerbla( 12, "c_dgemv", "Error: invalid argument. Twelfth argument must be a nonzero. Value: `%d`.", strideY );
73+
c_xerbla( 12, "c_dgemv", "Error: invalid argument. Twelfth argument must be nonzero. Value: `%d`.", strideY );
7474
return;
7575
}
7676
if ( layout == CblasColMajor ) {

lib/node_modules/@stdlib/blas/base/dgemv/src/dgemv_ndarray.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @param alpha scalar constant
3333
* @param A input matrix
3434
* @param strideA1 stride of the first dimension of `A`
35-
* @param strideA1 stride of the second dimension of `A`
35+
* @param strideA2 stride of the second dimension of `A`
3636
* @param offsetA starting index for `A`
3737
* @param X first input vector
3838
* @param strideX `X` stride length
@@ -73,11 +73,11 @@ void API_SUFFIX(c_dgemv_ndarray)( const CBLAS_TRANSPOSE trans, const CBLAS_INT M
7373
return;
7474
}
7575
if ( strideX == 0 ) {
76-
c_xerbla( 10, "c_dgemv_ndarray", "Error: invalid argument. Tenth argument must be a nonzero. Value: `%d`.", strideX );
76+
c_xerbla( 10, "c_dgemv_ndarray", "Error: invalid argument. Tenth argument must be nonzero. Value: `%d`.", strideX );
7777
return;
7878
}
7979
if ( strideY == 0 ) {
80-
c_xerbla( 14, "c_dgemv_ndarray", "Error: invalid argument. Fourteenth argument must be a nonzero. Value: `%d`.", strideY );
80+
c_xerbla( 14, "c_dgemv_ndarray", "Error: invalid argument. Fourteenth argument must be nonzero. Value: `%d`.", strideY );
8181
return;
8282
}
8383
// Check whether we can avoid computation altogether...

lib/node_modules/@stdlib/blas/base/dger/src/dger_ndarray.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@ void API_SUFFIX(c_dger_ndarray)( const CBLAS_INT M, const CBLAS_INT N, const dou
132132
return;
133133
}
134134
if ( strideX == 0 ) {
135-
c_xerbla( 5, "c_dger_ndarray", "Error: invalid argument. Fifth argument must be a nonzero. Value: `%d`.", strideX );
135+
c_xerbla( 5, "c_dger_ndarray", "Error: invalid argument. Fifth argument must be nonzero. Value: `%d`.", strideX );
136136
return;
137137
}
138138
if ( strideY == 0 ) {
139-
c_xerbla( 8, "c_dger_ndarray", "Error: invalid argument. Eighth argument must be a nonzero. Value: `%d`.", strideY );
139+
c_xerbla( 8, "c_dger_ndarray", "Error: invalid argument. Eighth argument must be nonzero. Value: `%d`.", strideY );
140140
return;
141141
}
142142
// Check whether we can avoid computation altogether...

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ void API_SUFFIX(c_sgemv)( const CBLAS_LAYOUT layout, const CBLAS_TRANSPOSE trans
6666
return;
6767
}
6868
if ( strideX == 0 ) {
69-
c_xerbla( 9, "c_sgemv", "Error: invalid argument. Ninth argument must be a nonzero. Value: `%d`.", strideX );
69+
c_xerbla( 9, "c_sgemv", "Error: invalid argument. Ninth argument must be nonzero. Value: `%d`.", strideX );
7070
return;
7171
}
7272
if ( strideY == 0 ) {
73-
c_xerbla( 12, "c_sgemv", "Error: invalid argument. Twelfth argument must be a nonzero. Value: `%d`.", strideY );
73+
c_xerbla( 12, "c_sgemv", "Error: invalid argument. Twelfth argument must be nonzero. Value: `%d`.", strideY );
7474
return;
7575
}
7676
if ( layout == CblasColMajor ) {

lib/node_modules/@stdlib/blas/base/sgemv/src/sgemv_ndarray.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @param alpha scalar constant
3333
* @param A input matrix
3434
* @param strideA1 stride of the first dimension of `A`
35-
* @param strideA1 stride of the second dimension of `A`
35+
* @param strideA2 stride of the second dimension of `A`
3636
* @param offsetA starting index for `A`
3737
* @param X first input vector
3838
* @param strideX `X` stride length
@@ -73,11 +73,11 @@ void API_SUFFIX(c_sgemv_ndarray)( const CBLAS_TRANSPOSE trans, const CBLAS_INT M
7373
return;
7474
}
7575
if ( strideX == 0 ) {
76-
c_xerbla( 10, "c_sgemv_ndarray", "Error: invalid argument. Tenth argument must be a nonzero. Value: `%d`.", strideX );
76+
c_xerbla( 10, "c_sgemv_ndarray", "Error: invalid argument. Tenth argument must be nonzero. Value: `%d`.", strideX );
7777
return;
7878
}
7979
if ( strideY == 0 ) {
80-
c_xerbla( 14, "c_sgemv_ndarray", "Error: invalid argument. Fourteenth argument must be a nonzero. Value: `%d`.", strideY );
80+
c_xerbla( 14, "c_sgemv_ndarray", "Error: invalid argument. Fourteenth argument must be nonzero. Value: `%d`.", strideY );
8181
return;
8282
}
8383
// Check whether we can avoid computation altogether...

lib/node_modules/@stdlib/blas/base/sger/src/sger_ndarray.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@ void API_SUFFIX(c_sger_ndarray)( const CBLAS_INT M, const CBLAS_INT N, const flo
132132
return;
133133
}
134134
if ( strideX == 0 ) {
135-
c_xerbla( 5, "c_sger_ndarray", "Error: invalid argument. Fifth argument must be a nonzero. Value: `%d`.", strideX );
135+
c_xerbla( 5, "c_sger_ndarray", "Error: invalid argument. Fifth argument must be nonzero. Value: `%d`.", strideX );
136136
return;
137137
}
138138
if ( strideY == 0 ) {
139-
c_xerbla( 8, "c_sger_ndarray", "Error: invalid argument. Eighth argument must be a nonzero. Value: `%d`.", strideY );
139+
c_xerbla( 8, "c_sger_ndarray", "Error: invalid argument. Eighth argument must be nonzero. Value: `%d`.", strideY );
140140
return;
141141
}
142142
// Check whether we can avoid computation altogether...

0 commit comments

Comments
 (0)