Skip to content

Commit dfd8998

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent b371c63 commit dfd8998

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/blas/base/dsyr/src

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
/**
2525
* Performs the symmetric rank 1 operation `A = α*x*x^T + A` where `α` is a scalar, `x` is an `N` element vector, 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 input vector
@@ -73,7 +73,7 @@ void API_SUFFIX(c_dsyr)( const CBLAS_LAYOUT layout, const CBLAS_UPLO uplo, const
7373
if ( layout == CblasColMajor ) {
7474
sa1 = 1;
7575
sa2 = LDA;
76-
} else { // layout === CblasRowMajor
76+
} else { // layout == CblasRowMajor
7777
sa1 = LDA;
7878
sa2 = 1;
7979
}

0 commit comments

Comments
 (0)