Skip to content

Commit 38656e4

Browse files
committed
docs: fix example
1 parent 020e09e commit 38656e4

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ Interchanges two complex single-precision floating-point vectors.
291291
float x[] = { 1.0f, 2.0f, 3.0f, 4.0f }; // interleaved real and imaginary components
292292
float y[] = { 5.0f, 6.0f, 7.0f, 8.0f };
293293

294-
c_cswap( 2, (void *)x, 1, (void *)Y, 1 );
294+
c_cswap( 2, (void *)x, 1, (void *)y, 1 );
295295
```
296296
297297
The function accepts the following arguments:

0 commit comments

Comments
 (0)