Skip to content

Commit 356389f

Browse files
authored
docs: add missing empty lines
1 parent a90f67c commit 356389f

File tree

1 file changed

+12
-0
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/laplace/logcdf

1 file changed

+12
-0
lines changed

lib/node_modules/@stdlib/stats/base/dists/laplace/logcdf/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,28 +191,40 @@ double stdlib_base_dists_laplace_logcdf( const double x, const double mu, const
191191
```
192192
193193
</section>
194+
194195
<!-- /.usage -->
196+
195197
<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
198+
196199
<section class="notes">
200+
197201
</section>
202+
198203
<!-- /.notes -->
204+
199205
<!-- C API usage examples. -->
206+
200207
<section class="examples">
208+
201209
### Examples
210+
202211
```c
203212
#include "stdlib/stats/base/dists/laplace/logcdf.h"
204213
#include <stdlib.h>
205214
#include <stdio.h>
215+
206216
static double random_uniform( const double min, const double max ) {
207217
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
208218
return min + ( v*(max-min) );
209219
}
220+
210221
int main( void ) {
211222
double mu;
212223
double b;
213224
double x;
214225
double y;
215226
int i;
227+
216228
for ( i = 0; i < 25; i++ ) {
217229
mu = random_uniform( -5.0, 5.0 );
218230
b = random_uniform( 0.0, 20.0 );

0 commit comments

Comments
 (0)