Skip to content

Commit b23d2ac

Browse files
authored
chore: fix typos
1 parent 3a4da5a commit b23d2ac

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dmskmax

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dmskmax/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ Computes the maximum value of a double-precision floating-point strided array ac
214214
#include <stdint.h>
215215

216216
const double x[] = { 1.0, -2.0, 2.0 };
217-
const uint8_t mask = { 0, 1, 0 };
217+
const uint8_t mask[] = { 0, 1, 0 };
218218

219219
double v = stdlib_strided_dmskmax_ndarray( 3, x, 1, 0, mask, 1, 0 );
220220
// returns 2.0

0 commit comments

Comments
 (0)