aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorherbelin2010-06-12 15:30:28 +0000
committerherbelin2010-06-12 15:30:28 +0000
commita885a2148e4d45606c654145db5d859c4d6a223b (patch)
tree5feb549d45868e5eab7762891d0e7dc46f4e7760 /tactics
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 'tactics')
-rw-r--r--tactics/eauto.ml42
-rw-r--r--tactics/inv.ml2
2 files changed, 2 insertions, 2 deletions
diff --git a/tactics/eauto.ml4 b/tactics/eauto.ml4
index 2d18c36fee..3efa9b2186 100644
--- a/tactics/eauto.ml4
+++ b/tactics/eauto.ml4
@@ -345,7 +345,7 @@ ARGUMENT EXTEND hintbases
| [ ] -> [ Some [] ]
END
-let pr_constr_coma_sequence prc _ _ = prlist_with_sep pr_coma prc
+let pr_constr_coma_sequence prc _ _ = prlist_with_sep pr_comma prc
ARGUMENT EXTEND constr_coma_sequence
TYPED AS constr_list
diff --git a/tactics/inv.ml b/tactics/inv.ml
index 3130c1ca9b..e732a31c4c 100644
--- a/tactics/inv.ml
+++ b/tactics/inv.ml
@@ -50,7 +50,7 @@ let check_no_metas clenv ccl =
errorlabstrm "inversion"
(str ("Cannot find an instantiation for variable"^
(if List.length metas = 1 then " " else "s ")) ++
- prlist_with_sep pr_coma pr_name metas
+ prlist_with_sep pr_comma pr_name metas
(* ajouter "in " ++ pr_lconstr ccl mais il faut le bon contexte *))
let var_occurs_in_pf gl id =