Skip to content

Commit 6a58eb0

Browse files
committed
1 parent a4d6ab2 commit 6a58eb0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

theories/lib/Specif.v

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ Arguments msigT2 (A P Q)%type.
5353
(* Notation "{ x : A | P & Q }" := (msig2 (A:=A) (fun x => P) (fun x => Q)) : *)
5454
(* type_scope. *)
5555
(* Notation "{ x : A & P }" := (msigT (A:=A) (fun x => P)) : type_scope. *)
56-
Notation "'m:{' x .. y & P }" := (msigT (fun x => .. (msigT (fun y => P)) ..)) (x binder, y binder) : type_scope.
56+
Notation "'m:{' x & P }" := (msigT (fun x => P)) (x binder) : type_scope.
57+
Notation "'m:{' x , .. , y & P }" := (msigT (fun x => .. (msigT (fun y => P)) ..)) (x closed binder, y closed binder) : type_scope.
5758
(* Notation "{ x : A & P & Q }" := (msigT2 (A:=A) (fun x => P) (fun x => Q)) : *)
5859
(* type_scope. *)
5960

0 commit comments

Comments
 (0)