aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-10-24 17:13:20 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-10-24 17:13:20 +0000
commit28623d59a6381c7fb1c198ddca2dc382ba5c0e4c (patch)
tree1c17ab0c40c93c54b448eaa42c071f57010e6391
parent82649c076ae38353aec5333987c80476f27e3775 (diff)
Fixing XML doc (COQ_XML not working as an environment variable).
Fixing English grammar in inversion error message (reported in bug #2164). git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12409 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--doc/refman/Helm.tex1
-rw-r--r--tactics/inv.ml2
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