aboutsummaryrefslogtreecommitdiff
path: root/theories/Logic/DecidableTypeEx.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Logic/DecidableTypeEx.v')
-rw-r--r--theories/Logic/DecidableTypeEx.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Logic/DecidableTypeEx.v b/theories/Logic/DecidableTypeEx.v
index f6961781c4..30a7bb6332 100644
--- a/theories/Logic/DecidableTypeEx.v
+++ b/theories/Logic/DecidableTypeEx.v
@@ -18,7 +18,7 @@ Unset Strict Implicit.
the equality is the usual one of Coq. *)
Module Type UsualDecidableType.
- Parameter Inline t : Set.
+ Parameter Inline t : Type.
Definition eq := @eq t.
Definition eq_refl := @refl_equal t.
Definition eq_sym := @sym_eq t.
@@ -33,7 +33,7 @@ Module UDT_to_DT (U:UsualDecidableType) <: DecidableType := U.
(** an shortcut for easily building a UsualDecidableType *)
Module Type MiniDecidableType.
- Parameter Inline t : Set.
+ Parameter Inline t : Type.
Parameter eq_dec : forall x y:t, { x=y }+{ x<>y }.
End MiniDecidableType.