aboutsummaryrefslogtreecommitdiffhomepage
path: root/library
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-06-12 15:30:28 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-06-12 15:30:28 +0000
commita885a2148e4d45606c654145db5d859c4d6a223b (patch)
tree5feb549d45868e5eab7762891d0e7dc46f4e7760 /library
parentd30267620672a939f56fb9d6e161070bbb1112a6 (diff)
Fixing spelling: pr_coma -> pr_comma
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13119 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library')
-rw-r--r--library/declare.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/declare.ml b/library/declare.ml
index 68b9ca9fb..b571ecf3a 100644
--- a/library/declare.ml
+++ b/library/declare.ml
@@ -288,11 +288,11 @@ let fixpoint_message indexes l =
(match indexes with
| Some [|i|] -> str " (decreasing on "++pr_rank i++str " argument)"
| _ -> mt ())
- | l -> hov 0 (prlist_with_sep pr_coma pr_id l ++
+ | l -> hov 0 (prlist_with_sep pr_comma pr_id l ++
spc () ++ str "are recursively defined" ++
match indexes with
| Some a -> spc () ++ str "(decreasing respectively on " ++
- prlist_with_sep pr_coma pr_rank (Array.to_list a) ++
+ prlist_with_sep pr_comma pr_rank (Array.to_list a) ++
str " arguments)"
| None -> mt ()))
@@ -300,7 +300,7 @@ let cofixpoint_message l =
Flags.if_verbose msgnl (match l with
| [] -> anomaly "No corecursive definition."
| [id] -> pr_id id ++ str " is corecursively defined"
- | l -> hov 0 (prlist_with_sep pr_coma pr_id l ++
+ | l -> hov 0 (prlist_with_sep pr_comma pr_id l ++
spc () ++ str "are corecursively defined"))
let recursive_message isfix i l =