Skip to content

Commit c9adb63

Browse files
authored
docs: add missing empty lines
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent aa94c73 commit c9adb63

File tree

1 file changed

+12
-0
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/rayleigh/quantile

1 file changed

+12
-0
lines changed

lib/node_modules/@stdlib/stats/base/dists/rayleigh/quantile/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,27 +192,39 @@ double stdlib_base_dists_rayleigh_quantile( const double p, const double sigma )
192192
```
193193
194194
</section>
195+
195196
<!-- /.usage -->
197+
196198
<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
199+
197200
<section class="notes">
201+
198202
</section>
203+
199204
<!-- /.notes -->
205+
200206
<!-- C API usage examples. -->
207+
201208
<section class="examples">
209+
202210
### Examples
211+
203212
```c
204213
#include "stdlib/stats/base/dists/rayleigh/quantile.h"
205214
#include <stdlib.h>
206215
#include <stdio.h>
216+
207217
static double random_uniform( const double min, const double max ) {
208218
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
209219
return min + ( v*(max-min) );
210220
}
221+
211222
int main( void ) {
212223
double sigma;
213224
double p;
214225
double y;
215226
int i;
227+
216228
for ( i = 0; i < 25; i++ ) {
217229
p = random_uniform( 0.0, 1.0 );
218230
sigma = random_uniform( 0.1, 10.0 );

0 commit comments

Comments
 (0)