Skip to content

Commit cf8eaf4

Browse files
authored
docs: replace stdev with standard deviation in C comments
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 31c5a5f commit cf8eaf4

File tree

2 files changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/gamma/stdev

2 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/gamma/stdev/include/stdlib/stats/base/dists/gamma/stdev.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Returns the stdev of a gamma distribution.
30+
* Returns the standard deviation of a gamma distribution.
3131
*/
3232
double stdlib_base_dists_gamma_stdev( const double alpha, const double beta );
3333

lib/node_modules/@stdlib/stats/base/dists/gamma/stdev/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
#include "stdlib/math/base/special/sqrt.h"
2121

2222
/**
23-
* Returns the stdev of a gamma distribution.
23+
* Returns the standard deviation of a gamma distribution.
2424
*
2525
* @param alpha shape parameter
2626
* @param beta rate parameter
27-
* @return stdev
27+
* @return standard deviation
2828
*
2929
* @example
3030
* double y = stdlib_base_gamma_stdev( 1.0, 1.0 );

0 commit comments

Comments
 (0)