aboutsummaryrefslogtreecommitdiff
path: root/theories/Program
diff options
context:
space:
mode:
authormsozeau2008-06-22 11:35:16 +0000
committermsozeau2008-06-22 11:35:16 +0000
commitc9278a6352d94bd04a438a9f9276f598160c5395 (patch)
tree025ec0bcbe31433cbcf22f66d2fa3ff3302b7e73 /theories/Program
parent8874a5916bc43acde325f67a73544a4beb65c781 (diff)
Rename obligations_tactic to obligation_tactic and fix bugs #1893.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11164 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Program')
-rw-r--r--theories/Program/Tactics.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Program/Tactics.v b/theories/Program/Tactics.v
index 5182123f4e..45e965142d 100644
--- a/theories/Program/Tactics.v
+++ b/theories/Program/Tactics.v
@@ -222,7 +222,7 @@ Ltac refine_hyp c :=
end.
(** The default simplification tactic used by Program is defined by [program_simpl], sometimes [auto]
- is not enough, better rebind using [Obligations Tactic := tac] in this case,
+ is not enough, better rebind using [Obligation Tactic := tac] in this case,
possibly using [program_simplify] to use standard goal-cleaning tactics. *)
Ltac program_simplify :=
@@ -231,4 +231,4 @@ Ltac program_simplify :=
Ltac program_simpl := program_simplify ; auto.
-Ltac obligations_tactic := program_simpl.
+Ltac obligation_tactic := program_simpl.