Skip to content

Commit 5a20e0f

Browse files
authored
docs: update comment
Signed-off-by: Athan <[email protected]>
1 parent 2ebc225 commit 5a20e0f

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/dsyr/examples/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/dsyr/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ int main( void ) {
4848
printf( "A1[ %i ] = %f\n", i, A1[ i ] );
4949
}
5050

51-
// Perform the symmetric rank 1 operation `A = α*x*x^T + A` using alternative semantics indexing:
51+
// Perform the symmetric rank 1 operation `A = α*x*x^T + A` using alternative indexing semantics:
5252
c_dsyr_ndarray( CblasUpper, N, 1.0, x, 1, 0, A2, N, 1, 0 );
5353

5454
// Print the result:

0 commit comments

Comments
 (0)