aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Sets/Finite_sets.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Sets/Finite_sets.v')
-rw-r--r--theories/Sets/Finite_sets.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Sets/Finite_sets.v b/theories/Sets/Finite_sets.v
index f08436754..07543276b 100644
--- a/theories/Sets/Finite_sets.v
+++ b/theories/Sets/Finite_sets.v
@@ -61,7 +61,7 @@ Section Ensembles_finis_facts.
(exists x : _, X = Add U A x /\ ~ In U A x /\ cardinal U A n)
end.
Proof.
- induction 1; simpl in |- *; auto.
+ induction 1; simpl; auto.
exists A; exists x; auto.
Qed.
@@ -73,7 +73,7 @@ Section Ensembles_finis_facts.
| S n => Inhabited U X
end.
Proof.
- intros X p C; elim C; simpl in |- *; trivial with sets.
+ intros X p C; elim C; simpl; trivial with sets.
Qed.
End Ensembles_finis_facts.