diff options
-rw-r--r-- | doc/refman/Helm.tex | 1 | ||||
-rw-r--r-- | tactics/inv.ml | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/doc/refman/Helm.tex b/doc/refman/Helm.tex index 74db9c86d..ed94dfc59 100644 --- a/doc/refman/Helm.tex +++ b/doc/refman/Helm.tex @@ -25,7 +25,6 @@ exported objects is reflected. \begin{quotation} \verb+make COQ_XML=-xml+ \end{quotation} - (or, equivalently, setting the environment variable \verb+COQ_XML+) To export a development to XML, the suggested procedure is then: diff --git a/tactics/inv.ml b/tactics/inv.ml index 2a11d6520..eb978ba48 100644 --- a/tactics/inv.ml +++ b/tactics/inv.ml @@ -291,7 +291,7 @@ let generalizeRewriteIntros tac depids id gls = let rec tclMAP_i n tacfun = function | [] -> tclDO n (tacfun None) | a::l -> - if n=0 then error "Too much names." + if n=0 then error "Too many names." else tclTHEN (tacfun (Some a)) (tclMAP_i (n-1) tacfun l) let remember_first_eq id x = if !x = no_move then x := MoveAfter id |