aboutsummaryrefslogtreecommitdiff
path: root/theories/Logic/DecidableType.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Logic/DecidableType.v')
-rw-r--r--theories/Logic/DecidableType.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/theories/Logic/DecidableType.v b/theories/Logic/DecidableType.v
index e372ae75c8..fed25ad742 100644
--- a/theories/Logic/DecidableType.v
+++ b/theories/Logic/DecidableType.v
@@ -16,7 +16,7 @@ Unset Strict Implicit.
Module Type EqualityType.
- Parameter Inline t : Set.
+ Parameter Inline t : Type.
Parameter Inline eq : t -> t -> Prop.
@@ -33,7 +33,7 @@ End EqualityType.
Module Type DecidableType.
- Parameter Inline t : Set.
+ Parameter Inline t : Type.
Parameter Inline eq : t -> t -> Prop.
@@ -54,7 +54,7 @@ Module KeyDecidableType(D:DecidableType).
Import D.
Section Elt.
- Variable elt : Set.
+ Variable elt : Type.
Notation key:=t.
Definition eqk (p p':key*elt) := eq (fst p) (fst p').