From 56e2a4fef46ca90d09185811e5c3b656573e8aeb Mon Sep 17 00:00:00 2001
From: Allan Blanchard <allan.blanchard@cea.fr>
Date: Wed, 22 Jan 2025 11:35:18 +0100
Subject: [PATCH] [wp] API doc coherence

---
 src/plugins/wp/Sigma.mli | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/src/plugins/wp/Sigma.mli b/src/plugins/wp/Sigma.mli
index b20f9e8df71..6c26365b81e 100644
--- a/src/plugins/wp/Sigma.mli
+++ b/src/plugins/wp/Sigma.mli
@@ -62,8 +62,8 @@ sig
 
   type t
 
-  (** Chunk type name for datatype registration. *)
   val self : string
+  (** Chunk type name for datatype registration. *)
 
   val hash : t -> int
   val equal : t -> t -> bool
@@ -77,7 +77,7 @@ sig
   (** Used when generating fresh variables for a chunk. *)
 
   val is_init : t -> bool
-  (** Whether the chunk is an initialized chunk (used for filtering). *)
+  (** Whether the chunk tracks memory initialization (used for filtering). *)
 
   val is_single : t -> bool
   (** Used to sort memory chunk parameters in ACSL symbols.
@@ -121,20 +121,20 @@ sig
   (** Chunk Extension. *)
   type mu += Mu of C.t
 
-  (** Individual promotion of a model chunk to a uniform chunk. *)
   val chunk : C.t -> chunk
+  (** Individual promotion of a model chunk to a uniform chunk. *)
 
-  (** Promoted [Domain.singleton]. *)
   val singleton : C.t -> domain
+  (** Promoted [Domain.singleton]. *)
 
-  (** Specialized [Sigma.mem], equivalent to [Sigma.mem s (chunk c)]. *)
   val mem : sigma -> C.t -> bool
+  (** Specialized [Sigma.mem], equivalent to [Sigma.mem s (chunk c)]. *)
 
-  (** Specialized [Sigma.get], equivalent to [Sigma.get s (chunk c)]. *)
   val get : sigma -> C.t -> F.var
+  (** Specialized [Sigma.get], equivalent to [Sigma.get s (chunk c)]. *)
 
-  (** Specialized [Sigma.value], equivalent to [Sigma.value s (chunk c)]. *)
   val value : sigma -> C.t -> F.term
+  (** Specialized [Sigma.value], equivalent to [Sigma.value s (chunk c)]. *)
 
 end
 
@@ -155,8 +155,9 @@ val get : sigma -> chunk -> F.var
 val value : sigma -> chunk -> F.term
 (** Same as [Lang.F.e_var] of [get]. *)
 
-val copy : sigma -> sigma (** Duplicate the environment. Fresh chunks in the copy
-                              are {i not} duplicated into the source environment. *)
+val copy : sigma -> sigma
+(** Duplicate the environment. Fresh chunks in the copy
+    are {i not} duplicated into the source environment. *)
 
 val join : sigma -> sigma -> Passive.t
 (** Make two environment pairwise equal {i via} the passive form.
-- 
GitLab