Skip to content

Commit 0e05e9e

Browse files
committed
chore: address commit comments (commit d269f48)
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: missing_dependencies - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 6a802bc commit 0e05e9e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,6 @@ for ( i = 0; i < 10; i++ ) {
139139

140140
<!-- /.examples -->
141141

142-
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
143-
144-
<section class="references">
145-
146142
<!-- C interface documentation. -->
147143

148144
* * *
@@ -209,7 +205,6 @@ double stdlib_base_dists_geometric_logcdf( const double x, const double p );
209205
#include "stdlib/stats/base/dists/geometric/logcdf.h"
210206
#include <stdlib.h>
211207
#include <stdio.h>
212-
#include <math.h>
213208
214209
static double random_uniform( const double min, const double max ) {
215210
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
@@ -233,8 +228,14 @@ int main( void ) {
233228

234229
</section>
235230

231+
<!-- /.c -->
232+
236233
<!-- /.references -->
237234

235+
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
236+
237+
<section class="references">
238+
238239
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
239240

240241
<section class="related">

lib/node_modules/@stdlib/stats/base/dists/geometric/logcdf/examples/c/example.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include "stdlib/stats/base/dists/geometric/logcdf.h"
2020
#include <stdlib.h>
2121
#include <stdio.h>
22-
#include <math.h>
2322

2423
static double random_uniform( const double min, const double max ) {
2524
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );

0 commit comments

Comments
 (0)