aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Sets/Multiset.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Sets/Multiset.v')
-rw-r--r--theories/Sets/Multiset.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Sets/Multiset.v b/theories/Sets/Multiset.v
index 80491c0aa..42130bbb5 100644
--- a/theories/Sets/Multiset.v
+++ b/theories/Sets/Multiset.v
@@ -16,11 +16,11 @@ Set Implicit Arguments.
Section multiset_defs.
- Variable A : Set.
+ Variable A : Type.
Variable eqA : A -> A -> Prop.
Hypothesis Aeq_dec : forall x y:A, {eqA x y} + {~ eqA x y}.
- Inductive multiset : Set :=
+ Inductive multiset : Type :=
Bag : (A -> nat) -> multiset.
Definition EmptyBag := Bag (fun a:A => 0).