Skip to content

Commit 67e36d2

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 60bad94 commit 67e36d2

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/base/zcopy

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/zcopy/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ Copies values from `X` into `Y`.
245245
const double x[] = { 1.0, 2.0, 3.0, 4.0 }; // interleaved real and imaginary components
246246
double y[] = { 0.0, 0.0, 0.0, 0.0 };
247247

248-
c_zcopy( 2, (void *)x, 1, (void *)Y, 1 );
248+
c_zcopy( 2, (void *)x, 1, (void *)y, 1 );
249249
```
250250
251251
The function accepts the following arguments:
@@ -268,7 +268,7 @@ Copies values from `X` into `Y` using alternative indexing semantics.
268268
const double x[] = { 1.0, 2.0, 3.0, 4.0 }; // interleaved real and imaginary components
269269
double y[] = { 0.0, 0.0, 0.0, 0.0 };
270270

271-
c_zcopy_ndarray( 2, (void *)x, 1, 0, (void *)Y, 1, 0 );
271+
c_zcopy_ndarray( 2, (void *)x, 1, 0, (void *)y, 1, 0 );
272272
```
273273
274274
The function accepts the following arguments:

0 commit comments

Comments
 (0)