Skip to content

Commit cef4c74

Browse files
committed
docs: fix example
1 parent 7b01e66 commit cef4c74

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/ccopy

1 file changed

+1
-1
lines changed

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

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

248-
c_ccopy( 2, (void *)x, 1, (void *)Y, 1 );
248+
c_ccopy( 2, (void *)x, 1, (void *)y, 1 );
249249
```
250250
251251
The function accepts the following arguments:

0 commit comments

Comments
 (0)