Skip to content

Commit cddc839

Browse files
docs: use spaces instead of tabs
1 parent c12170e commit cddc839

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/exponential/kurtosis/benchmark/c

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/stats/base/dists/exponential/kurtosis/benchmark/c/benchmark.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ static void print_version( void ) {
3838
/**
3939
* Prints the TAP summary.
4040
*
41-
* @param total total number of tests
42-
* @param passing total number of passing tests
41+
* @param total total number of tests
42+
* @param passing total number of passing tests
4343
*/
4444
static void print_summary( int total, int passing ) {
4545
printf( "#\n" );
@@ -78,9 +78,9 @@ static double tic( void ) {
7878
/**
7979
* Generates a random number on the interval [min,max).
8080
*
81-
* @param min minimum value (inclusive)
82-
* @param max maximum value (exclusive)
83-
* @return random number
81+
* @param min minimum value (inclusive)
82+
* @param max maximum value (exclusive)
83+
* @return random number
8484
*/
8585
static double random_uniform( const double min, const double max ) {
8686
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );

0 commit comments

Comments
 (0)