aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/constant.mli
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/constant.mli')
-rw-r--r--kernel/constant.mli12
1 files changed, 7 insertions, 5 deletions
diff --git a/kernel/constant.mli b/kernel/constant.mli
index d8aeb7670..890e1f425 100644
--- a/kernel/constant.mli
+++ b/kernel/constant.mli
@@ -7,7 +7,7 @@ open Term
open Sign
(*i*)
-(* Constants. *)
+(* Constants (internal representation). *)
type discharge_recipe
@@ -15,10 +15,6 @@ type recipe =
| Cooked of constr
| Recipe of discharge_recipe
-type constant_entry = {
- const_entry_body : constr;
- const_entry_type : constr option }
-
type constant_body = {
const_kind : path_kind;
const_body : recipe ref option;
@@ -30,3 +26,9 @@ val is_defined : constant_body -> bool
val is_opaque : constant_body -> bool
+(*s Constant declaration. *)
+
+type constant_entry= {
+ const_entry_body : constr;
+ const_entry_type : constr option }
+