aboutsummaryrefslogtreecommitdiff
path: root/parsing/pptactic.ml
diff options
context:
space:
mode:
authorherbelin2005-12-26 17:08:16 +0000
committerherbelin2005-12-26 17:08:16 +0000
commit099fb1b4c5084bb899e4910e42c971cdfa81e1aa (patch)
tree33aa85efc447dd483613243a65ce5a31763d8d5e /parsing/pptactic.ml
parent989718e36ca338a64c248723d2590bb3eb4854a5 (diff)
Petite correction nom QuantHypArgType suite suppression traducteur
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@7739 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing/pptactic.ml')
-rw-r--r--parsing/pptactic.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/parsing/pptactic.ml b/parsing/pptactic.ml
index 9803c00314..8360e280a4 100644
--- a/parsing/pptactic.ml
+++ b/parsing/pptactic.ml
@@ -141,7 +141,7 @@ let rec pr_raw_generic prc prlc prtac prref x =
| ConstrMayEvalArgType ->
pr_arg (pr_may_eval prc prlc prref)
(out_gen rawwit_constr_may_eval x)
- | QuantVarArgType ->
+ | QuantHypArgType ->
pr_arg pr_quantified_hypothesis (out_gen rawwit_quant_hyp x)
| RedExprArgType ->
pr_arg (pr_red_expr (prc,prlc,prref)) (out_gen rawwit_red_expr x)
@@ -184,7 +184,7 @@ let rec pr_glob_generic prc prlc prtac x =
| ConstrMayEvalArgType ->
pr_arg (pr_may_eval prc prlc
(pr_or_var (pr_and_short_name pr_evaluable_reference))) (out_gen globwit_constr_may_eval x)
- | QuantVarArgType ->
+ | QuantHypArgType ->
pr_arg pr_quantified_hypothesis (out_gen globwit_quant_hyp x)
| RedExprArgType ->
pr_arg (pr_red_expr
@@ -229,7 +229,7 @@ let rec pr_generic prc prlc prtac x =
| ConstrArgType -> pr_arg prc (out_gen wit_constr x)
| ConstrMayEvalArgType ->
pr_arg prc (out_gen wit_constr_may_eval x)
- | QuantVarArgType ->
+ | QuantHypArgType ->
pr_arg pr_quantified_hypothesis (out_gen wit_quant_hyp x)
| RedExprArgType ->
pr_arg (pr_red_expr (prc,prlc,pr_evaluable_reference))