aboutsummaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorsoubiran2007-01-30 12:46:36 +0000
committersoubiran2007-01-30 12:46:36 +0000
commitee43b8005b283750c4ef6c1d2b537b8db9f9e24c (patch)
tree77abe150679d5fd3ee9b8173b563dd8c60857891 /kernel
parent0bab5d273b93d6d6392fd9bbe37d5398419468c9 (diff)
Petite correction sur un message d'erreur renvoyé au sous typage.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9557 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel')
-rw-r--r--kernel/subtyping.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/subtyping.ml b/kernel/subtyping.ml
index 98ec21eaaa..3f153ac244 100644
--- a/kernel/subtyping.ml
+++ b/kernel/subtyping.ml
@@ -310,14 +310,14 @@ and check_signatures cst env (msid1,sig1) (msid2,sig2') =
subst_signature_msid msid2 mp1 sig2'
with
| Circularity l ->
- error_circularity_in_subtyping l (debug_string_of_msid msid1) (debug_string_of_msid msid2) in
+ error_circularity_in_subtyping l (string_of_msid msid1) (string_of_msid msid2) in
let map1 = make_label_map mp1 sig1 in
let check_one_body cst (l,spec2) =
let info1 =
try
Labmap.find l map1
with
- Not_found -> error_no_such_label_sub l (debug_string_of_msid msid1) (debug_string_of_msid msid2)
+ Not_found -> error_no_such_label_sub l (string_of_msid msid1) (string_of_msid msid2)
in
match spec2 with
| SPBconst cb2 ->