aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--theories/Init/Tactics.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Init/Tactics.v b/theories/Init/Tactics.v
index 8e1d6d2d8b..a92d9b1eff 100644
--- a/theories/Init/Tactics.v
+++ b/theories/Init/Tactics.v
@@ -210,7 +210,7 @@ Tactic Notation "decide" constr(lemma) "with" constr(H) :=
(** Clear an hypothesis and its dependencies *)
-Tactic Notation "clear" "dependent" ident(h) :=
+Tactic Notation "clear" "dependent" hyp(h) :=
let rec depclear h :=
clear h ||
match goal with
@@ -222,5 +222,5 @@ Tactic Notation "clear" "dependent" ident(h) :=
(** Revert an hypothesis and its dependencies :
this is actually generalize dependent... *)
-Tactic Notation "revert" "dependent" ident(h) :=
+Tactic Notation "revert" "dependent" hyp(h) :=
generalize dependent h.