Skip to content

Commit b21aca4

Browse files
committed
docs: fix example
1 parent 3327fe6 commit b21aca4

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ Applies a plane rotation.
295295
double x[] = { 1.0, 2.0, 3.0, 4.0 }; // interleaved real and imaginary components
296296
double y[] = { 5.0, 6.0, 7.0, 8.0 };
297297

298-
c_zdrot( 2, (void *)x, 1, (void *)Y, 1, 0.8, 0.6 );
298+
c_zdrot( 2, (void *)x, 1, (void *)y, 1, 0.8, 0.6 );
299299
```
300300
301301
The function accepts the following arguments:

0 commit comments

Comments
 (0)