From 45ed699f117041e9b6d87b867a97c0b23c7f0550 Mon Sep 17 00:00:00 2001 From: Pierrot Date: Mon, 9 Oct 2023 08:10:53 +0200 Subject: [PATCH] Update src/core/Test_stat.ml Co-authored-by: Simon Cruanes --- src/core/Test_stat.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/Test_stat.ml b/src/core/Test_stat.ml index 443b20c..c6e4b09 100644 --- a/src/core/Test_stat.ml +++ b/src/core/Test_stat.ml @@ -2,8 +2,8 @@ open Common open Test module PB = PrintBox -(* Aggregate function computing the mean and the standard deviation - of data series using the Welford's algoritm. *) +(** Aggregate function computing the mean and the standard deviation + of data series using the Welford's algorithm. *) module Stats = struct type acc = { n: int; total: float; mean: float * float; s: float * float }