Skip to content

Commit 2c7f2bb

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 8b07319 commit 2c7f2bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/stats/base/ndarray/dmidrange/examples/c

lib/node_modules/@stdlib/stats/base/ndarray/dmidrange/examples/c/example.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ int main( void ) {
6363
// Define a list of ndarrays:
6464
const struct ndarray *arrays[] = { x };
6565

66-
// Compute the midrange value:
66+
// Compute the mid-range:
6767
double v = stdlib_stats_dmidrange( arrays );
6868

6969
// Print the result:
70-
printf( "midrange: %lf\n", v );
70+
printf( "mid-range: %lf\n", v );
7171

7272
// Free allocated memory:
7373
stdlib_ndarray_free( x );

0 commit comments

Comments
 (0)