aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Maps.v
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2019-08-02 10:48:27 +0200
committerXavier Leroy <xavierleroy@users.noreply.github.com>2019-08-05 18:33:17 +0200
commitde830925c012c8c725ffc59b64883f4cae3586bb (patch)
treeb9ea3ff5813168e9bea240145462d90bcd7a010f /lib/Maps.v
parent6f737edae4b7e6243a9f11e74614f55381f62ec7 (diff)
downloadcompcert-kvx-de830925c012c8c725ffc59b64883f4cae3586bb.tar.gz
compcert-kvx-de830925c012c8c725ffc59b64883f4cae3586bb.zip
Coq 8.10 compatibility: tweak Argument command
Diffstat (limited to 'lib/Maps.v')
-rw-r--r--lib/Maps.v2
1 files changed, 1 insertions, 1 deletions
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.