Skip to content

Commit c359a80

Browse files
authored
docs: add empty lines
1 parent ca43921 commit c359a80

File tree

1 file changed

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

1 file changed

+12
-0
lines changed

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,28 +198,40 @@ double stdlib_base_dists_logistic_quantile( const double p, const double mu, con
198198
```
199199
200200
</section>
201+
201202
<!-- /.usage -->
203+
202204
<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
205+
203206
<section class="notes">
207+
204208
</section>
209+
205210
<!-- /.notes -->
211+
206212
<!-- C API usage examples. -->
213+
207214
<section class="examples">
215+
208216
### Examples
217+
209218
```c
210219
#include "stdlib/stats/base/dists/logistic/quantile.h"
211220
#include <stdlib.h>
212221
#include <stdio.h>
222+
213223
static double random_uniform( const double min, const double max ) {
214224
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
215225
return min + ( v * ( max-min ) );
216226
}
227+
217228
int main( void ) {
218229
double mu;
219230
double p;
220231
double s;
221232
double y;
222233
int i;
234+
223235
for ( i = 0; i < 25; i++ ) {
224236
p = random_uniform( 0.0, 1.0 );
225237
mu = random_uniform( -5.0, 5.0 );

0 commit comments

Comments
 (0)