aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/RefMan-ltac.tex
diff options
context:
space:
mode:
Diffstat (limited to 'doc/RefMan-ltac.tex')
-rw-r--r--doc/RefMan-ltac.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/RefMan-ltac.tex b/doc/RefMan-ltac.tex
index b6844eb48..d96ff4dda 100644
--- a/doc/RefMan-ltac.tex
+++ b/doc/RefMan-ltac.tex
@@ -542,7 +542,7 @@ Compute in} and we can get the terms back by {\tt Match}.
{\parbox{6in}
{
\begin{coq_example}
-Tactic Definition Permut n:=
+Recursive Tactic Definition Permut n:=
Match Context With
[|-(permut ? ?1 ?1)] -> Apply permut_refl
|[|-(permut ? (cons ?1 ?2) (cons ?1 ?3))] ->
@@ -760,7 +760,7 @@ And MainSimplif:=
Match Context With
[|- ?1== ?2] -> Try (DSimplif ?1);Try (DSimplif ?2).
-Tactic Definition Length trm:=
+Recursive Tactic Definition Length trm:=
Match trm With
[?*?1] ->
Let succ=(Length ?1) In