Skip to content

Commit 8ce6f17

Browse files
authored
chore: correct variable naming
1 parent deef569 commit 8ce6f17

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dmin/examples/c

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dmin/examples/c/example.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ int main( void ) {
2828
const int N = 4;
2929

3030
// Specify the stride length:
31-
const int stride = 2;
31+
const int strideX = 2;
3232

3333
// Compute the minimum value:
34-
double v = stdlib_strided_dmin( N, x, stride );
34+
double v = stdlib_strided_dmin( N, x, strideX );
3535

3636
// Print the result:
3737
printf( "min: %lf\n", v );

0 commit comments

Comments
 (0)