diff options
Diffstat (limited to 'kernel/evd.ml')
| -rw-r--r-- | kernel/evd.ml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/evd.ml b/kernel/evd.ml index 24a50afa80..e5197db4e2 100644 --- a/kernel/evd.ml +++ b/kernel/evd.ml @@ -13,10 +13,10 @@ type evar_body = | EVAR_DEFINED of constr type 'a evar_info = { - evar_concl : typed_type; (* the type of the evar ... *) - evar_hyps : context; (* ... under a certain signature *) - evar_body : evar_body; (* its definition *) - evar_info : 'a option } (* any other necessary information *) + evar_concl : typed_type; (* the type of the evar ... *) + evar_hyps : typed_type signature; (* ... under a certain signature *) + evar_body : evar_body; (* its definition *) + evar_info : 'a option } (* any other necessary information *) type 'a evar_map = 'a evar_info Spmap.t |
