@@ -34,7 +34,7 @@ Declare Scope ITele_scope.
3434Delimit Scope ITele_scope with IT.
3535Bind Scope ITele_scope with ITele.
3636Arguments iBase {_} _.
37- Arguments iTele {_ _%type } _.
37+ Arguments iTele {_ _%_type } _.
3838
3939(** [ATele it] describes a applied version of the type described in
4040 [it]. For instance, if [it] represents the type [T] equals to
@@ -46,14 +46,14 @@ Arguments iTele {_ _%type} _.
4646(* Delimit Scope ATele_scope with AT. *)
4747(* Bind Scope ATele_scope with ATele. *)
4848(* Arguments aBase {_ _}. *)
49- (* Arguments aTele {_ _%type _} _%AT _. *)
49+ (* Arguments aTele {_ _%_type _} _%_AT _. *)
5050
5151Fixpoint ATele {sort} (it : ITele sort) : Type :=
5252 match it with
5353 | iBase T => unit
5454 | @iTele _ T f => { t : T & ATele (f t) }
5555 end .
56- Arguments ATele {_} !_%IT : simpl nomatch.
56+ Arguments ATele {_} !_%_IT : simpl nomatch.
5757Declare Scope ATele_scope.
5858Delimit Scope ATele_scope with AT.
5959Bind Scope ATele_scope with ATele.
@@ -67,7 +67,7 @@ Fixpoint ITele_App {isort} {it : ITele isort} : forall (args : ATele it), isort
6767 | iBase T => fun _ => T
6868 | iTele f => fun '(existT _ t a) => ITele_App a
6969 end .
70- Arguments ITele_App {_ !_%IT } !_%AT : simpl nomatch.
70+ Arguments ITele_App {_ !_%_IT } !_%_AT : simpl nomatch.
7171
7272(** Represents a constructor of an inductive type. *)
7373Inductive CTele {sort} (it : ITele sort) : Type :=
@@ -76,9 +76,9 @@ Inductive CTele {sort} (it : ITele sort) : Type :=
7676Declare Scope CTele_scope.
7777Delimit Scope CTele_scope with CT.
7878Bind Scope CTele_scope with CTele.
79- Arguments CTele {_} _%IT .
80- Arguments cBase {_ _%IT } _%AT _.
81- Arguments cProd {_ _%IT _%type } _.
79+ Arguments CTele {_} _%_IT .
80+ Arguments cBase {_ _%_IT } _%_AT _.
81+ Arguments cProd {_ _%_IT _%_type } _.
8282
8383
8484(** Represents a constructor of an inductive type where all arguments are non-dependent *)
@@ -102,7 +102,7 @@ Fixpoint RTele {isort : Sort} (rsort : Sort) (it : ITele isort) : Type :=
102102 | iBase T => T -> rsort
103103 | iTele f => forall t, RTele rsort (f t)
104104 end .
105- Arguments RTele {_} _ _%IT .
105+ Arguments RTele {_} _ _%_IT .
106106
107107Fixpoint RTele_App {isort rsort} {it : ITele isort} : forall (a : ATele it), RTele rsort it -> selem_of (ITele_App a) -> stype_of rsort :=
108108 match it as it' with
0 commit comments