Skip to content

Commit f9192a0

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 7751a92 commit f9192a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dnanvariance/include/stdlib/stats/base/dnanvariance.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extern "C" {
3434
double API_SUFFIX(stdlib_strided_dnanvariance)( const CBLAS_INT N, const double correction, const double *X, const CBLAS_INT strideX );
3535

3636
/**
37-
* Computes the variance of a double-precision floating-point strided array, ignoring `NaN` values and alternative indexing semantics.
37+
* Computes the variance of a double-precision floating-point strided array, ignoring `NaN` values and using alternative indexing semantics.
3838
*/
3939
double API_SUFFIX(stdlib_strided_dnanvariance_ndarray)( const CBLAS_INT N, const double correction, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX );
4040

lib/node_modules/@stdlib/stats/base/dnanvariance/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ double API_SUFFIX(stdlib_strided_dnanvariance)( const CBLAS_INT N, const double
3636
}
3737

3838
/**
39-
* Computes the variance of a double-precision floating-point strided array ignoring `NaN` values and alternative indexing semantics.
39+
* Computes the variance of a double-precision floating-point strided array ignoring `NaN` values and using alternative indexing semantics.
4040
*
4141
* @param N number of indexed elements
4242
* @param correction degrees of freedom adjustment

0 commit comments

Comments
 (0)