From de830925c012c8c725ffc59b64883f4cae3586bb Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Fri, 2 Aug 2019 10:48:27 +0200 Subject: Coq 8.10 compatibility: tweak Argument command --- lib/Maps.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/Maps.v b/lib/Maps.v index cfb866ba..9e44a7fe 100644 --- a/lib/Maps.v +++ b/lib/Maps.v @@ -190,7 +190,7 @@ Module PTree <: TREE. | Leaf : tree A | Node : tree A -> option A -> tree A -> tree A. - Arguments Leaf [A]. + Arguments Leaf {A}. Arguments Node [A]. Scheme tree_ind := Induction for tree Sort Prop. -- cgit