Skip to content

Commit a5c1993

Browse files
docs: use spaces instead of tabs
1 parent 0018e2f commit a5c1993

File tree

1 file changed

+6
-6
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/binomial/variance/benchmark/c

1 file changed

+6
-6
lines changed

lib/node_modules/@stdlib/stats/base/dists/binomial/variance/benchmark/c/benchmark.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ static void print_version( void ) {
3737
/**
3838
* Prints the TAP summary.
3939
*
40-
* @param total total number of tests
41-
* @param passing total number of passing tests
40+
* @param total total number of tests
41+
* @param passing total number of passing tests
4242
*/
4343
static void print_summary( int total, int passing ) {
4444
printf( "#\n" );
@@ -52,7 +52,7 @@ static void print_summary( int total, int passing ) {
5252
/**
5353
* Prints benchmarks results.
5454
*
55-
* @param elapsed elapsed time in seconds
55+
* @param elapsed elapsed time in seconds
5656
*/
5757
static void print_results( double elapsed ) {
5858
double rate = (double)ITERATIONS / elapsed;
@@ -77,9 +77,9 @@ static double tic( void ) {
7777
/**
7878
* Generates a random number on the interval [min,max).
7979
*
80-
* @param min minimum value (inclusive)
81-
* @param max maximum value (exclusive)
82-
* @return random number
80+
* @param min minimum value (inclusive)
81+
* @param max maximum value (exclusive)
82+
* @return random number
8383
*/
8484
static double random_uniform( const double min, const double max ) {
8585
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );

0 commit comments

Comments
 (0)