Skip to content

Commit aea56c1

Browse files
committed
docs: fix signature
1 parent b40f5c3 commit aea56c1

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,12 @@ console.log( x );
172172
#include "stdlib/blas/base/dscal.h"
173173
```
174174

175-
#### c_dscal( N, \*X, stride )
175+
#### c_dscal( N, alpha, \*X, stride )
176176

177177
Multiplies each element of a double-precision floating-point vector by a constant.
178178

179179
```c
180-
const double x[] = { 1.0, 2.0, 3.0, 4.0 };
180+
double x[] = { 1.0, 2.0, 3.0, 4.0 };
181181

182182
c_dscal( 4, 5.0, x, 1 );
183183
```

0 commit comments

Comments
 (0)