aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/type_errors.mli
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/type_errors.mli')
-rw-r--r--kernel/type_errors.mli8
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/type_errors.mli b/kernel/type_errors.mli
index e022be01d..277e5ca4e 100644
--- a/kernel/type_errors.mli
+++ b/kernel/type_errors.mli
@@ -53,8 +53,8 @@ type type_error =
| CantApplyBadType of (int * constr * constr)
* unsafe_judgment * unsafe_judgment list
| CantApplyNonFunctional of unsafe_judgment * unsafe_judgment list
- | IllFormedRecBody of guard_error * name list * int * constr array
- | IllTypedRecBody of int * name list * unsafe_judgment array
+ | IllFormedRecBody of guard_error * name array * int * constr array
+ | IllTypedRecBody of int * name array * unsafe_judgment array
* types array
exception TypeError of path_kind * env * type_error
@@ -94,9 +94,9 @@ val error_cant_apply_bad_type :
unsafe_judgment -> unsafe_judgment list -> 'b
val error_ill_formed_rec_body :
- path_kind -> env -> guard_error -> name list -> int -> constr array -> 'b
+ path_kind -> env -> guard_error -> name array -> int -> constr array -> 'b
val error_ill_typed_rec_body :
- path_kind -> env -> int -> name list -> unsafe_judgment array
+ path_kind -> env -> int -> name array -> unsafe_judgment array
-> types array -> 'b