diff options
author | glondu <glondu@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2010-10-25 08:59:42 +0000 |
---|---|---|
committer | glondu <glondu@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2010-10-25 08:59:42 +0000 |
commit | 348b5346f49db14dc83f93272af06be9cebc9d2c (patch) | |
tree | aaaef646186483ca61a4f96e310e5836edc271d5 /proofs | |
parent | 74c9867ec0b552e5df5c56725fadcd24452ca12e (diff) |
Fix minor typo in error message (Closes: #2408)
Patch from Adam Megacz.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13577 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs')
-rw-r--r-- | proofs/proofview.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/proofview.ml b/proofs/proofview.ml index 23c134395..677c73942 100644 --- a/proofs/proofview.ml +++ b/proofs/proofview.ml @@ -110,7 +110,7 @@ let focus_sublist i j l = try Util.list_chop (j-i+1) sub_right with Failure "list_chop" -> - Util.errorlabstrm "nth_unproven" (Pp.str"Not such unproven subgoal") + Util.errorlabstrm "nth_unproven" (Pp.str"No such unproven subgoal") in (sub, (left,right)) |