Skip to content

Commit 3855e8b

Browse files
authored
chore: apply suggestions from code review
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 5142172 commit 3855e8b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/ndarray/smidrange/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ console.log( v );
125125

126126
#### stdlib_stats_smidrange( arrays )
127127

128-
Computes the mid-range of a one-dimensional single-precision floating-point ndarray.
128+
Computes the [mid-range][mid-range] of a one-dimensional single-precision floating-point ndarray.
129129

130130
```c
131131
#include "stdlib/ndarray/ctor.h"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ int main( void ) {
6767
float v = stdlib_stats_smidrange( arrays );
6868

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

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

0 commit comments

Comments
 (0)