From 0be5b8929b66b0d03828a63ca58b2ab5af15f688 Mon Sep 17 00:00:00 2001 From: Om-A-osc Date: Sun, 15 Mar 2026 16:46:05 +0530 Subject: [PATCH] docs: fix C codeblocks in `stats/base/dists/cosine/logcdf` --- 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: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../@stdlib/stats/base/dists/cosine/logcdf/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/cosine/logcdf/README.md b/lib/node_modules/@stdlib/stats/base/dists/cosine/logcdf/README.md index 98af269bf416..a58e2de1ac0a 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/cosine/logcdf/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/cosine/logcdf/README.md @@ -189,7 +189,7 @@ Evaluates the natural logarithm of the [cumulative distribution function][cdf] ( ```c double out = stdlib_base_dists_cosine_logcdf( 0.5, 0.0, 1.0 ); -// returns ~0.909 +// returns ~-0.095 ``` The function accepts the following arguments: @@ -221,7 +221,7 @@ double stdlib_base_dists_cosine_logcdf( const double x, const double mu, const d ### Examples ```c -#include "stdlib/stats/base/dists/cosine/cdf.h" +#include "stdlib/stats/base/dists/cosine/logcdf.h" #include "stdlib/constants/float64/eps.h" #include #include