Skip to content

Commit 082d521

Browse files
authored
docs: update comments
Signed-off-by: Athan <[email protected]>
1 parent 90c0dcd commit 082d521

File tree

1 file changed

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

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
#include <stdio.h>
2424

2525
int main( void ) {
26-
// Create strided arrays:
2726
stdlib_complex128_t x[] = {
2827
stdlib_complex128( 1.0, 2.0 ),
2928
stdlib_complex128( 3.0, 4.0 ),
@@ -34,7 +33,7 @@ int main( void ) {
3433
// Specify the number of elements:
3534
const int N = 4;
3635

37-
// Specify stride lengths:
36+
// Specify the stride length:
3837
const int strideX = 1;
3938

4039
c_zdscal( N, 2.0, (void *)x, strideX );

0 commit comments

Comments
 (0)