aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Lattice.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Lattice.v b/lib/Lattice.v
index 7ef1b9e1..f796367d 100644
--- a/lib/Lattice.v
+++ b/lib/Lattice.v
@@ -6,10 +6,10 @@ Require Import FSets.
(** * Signatures of semi-lattices *)
-(** A semi-lattice is a type [t] equipped with a decidable equality [eq],
- a partial order [ge], a smallest element [bot], and an upper
- bound operation [lub]. Note that we do not demand that [lub] computes
- the least upper bound. *)
+(** A semi-lattice is a type [t] equipped with an equivalence relation [eq],
+ a boolean equivalence test [beq], a partial order [ge], a smallest element
+ [bot], and an upper bound operation [lub].
+ Note that we do not demand that [lub] computes the least upper bound. *)
Module Type SEMILATTICE.