Skip to content

Commit dc4574a

Browse files
authored
chore: add correct variable
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 5ca0392 commit dc4574a

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/dtrmv/examples/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/dtrmv/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ int main( void ) {
2828
3.0, 2.0, 1.0
2929
};
3030
// Define `x` vector:
31-
double X[ 3 ] = { 1.0, 2.0, 3.0 };
31+
double x[ 3 ] = { 1.0, 2.0, 3.0 };
3232

3333
// Specify the number of elements along each dimension of `A`:
3434
const int N = 3;

0 commit comments

Comments
 (0)