diff src/MoreDep.v @ 568:81d63d9c1cc5

Port to Coq 8.9.0
author Adam Chlipala <adam@chlipala.net>
date Sun, 20 Jan 2019 15:16:29 -0500
parents af97676583f3
children 0ce9829efa3b
line wrap: on
line diff
--- a/src/MoreDep.v	Sun Jan 20 15:00:32 2019 -0500
+++ b/src/MoreDep.v	Sun Jan 20 15:16:29 2019 -0500
@@ -647,7 +647,7 @@
 
   (** We modify Coq's default choice of implicit arguments for [makeRbtree], so that we do not need to specify the [c] and [n] arguments explicitly in later calls. *)
 
-  Implicit Arguments makeRbtree [c n].
+  Arguments makeRbtree [c n].
 
   (** Finally, we define [insert] as a simple composition of [ins] and [makeRbtree]. *)
 
@@ -917,7 +917,7 @@
   Defined.
 End split.
 
-Implicit Arguments split [P1 P2].
+Arguments split [P1 P2].
 
 (* begin hide *)
 Lemma app_empty_end : forall s, s ++ "" = s.