aboutsummaryrefslogtreecommitdiffhomepage
path: root/vernac/comInductive.ml
diff options
context:
space:
mode:
authorGravatar Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net>2018-02-20 15:35:25 +0100
committerGravatar Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net>2018-03-05 14:21:47 +0100
commit88f3b5a441a3aaeb637d0b109544fbe71b7560dd (patch)
treeddbe8c3c4e1e2d773078254b0cef162126503709 /vernac/comInductive.ml
parent78551857a41a57607ecfb3fd010e0a9755f47cea (diff)
Allow universe declarations for [with Definition].
Diffstat (limited to 'vernac/comInductive.ml')
-rw-r--r--vernac/comInductive.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/vernac/comInductive.ml b/vernac/comInductive.ml
index cef5546c6..fce263bdb 100644
--- a/vernac/comInductive.ml
+++ b/vernac/comInductive.ml
@@ -55,7 +55,7 @@ let push_types env idl tl =
type structured_one_inductive_expr = {
ind_name : Id.t;
- ind_univs : Vernacexpr.universe_decl_expr option;
+ ind_univs : universe_decl_expr option;
ind_arity : constr_expr;
ind_lc : (Id.t * constr_expr) list
}