diff options
| author | Théo Zimmermann | 2019-02-08 13:47:47 +0100 |
|---|---|---|
| committer | Théo Zimmermann | 2019-02-28 15:41:28 +0100 |
| commit | b08c14e551def3fb1ec885cf1ff05018f3d87ab9 (patch) | |
| tree | 3facd399d962a24d0601113440d9cef1af83b040 /theories/Classes/Init.v | |
| parent | 8b42c73a6a3b417e848952e7510e27d74e6e1758 (diff) | |
Fix #7632: Change syntax of autoapply according to the documentation.
Deprecate the old syntax.
The documented syntax was using a with clause which is more standard with a hint database
than the using clause that was actually implemented.
Diffstat (limited to 'theories/Classes/Init.v')
| -rw-r--r-- | theories/Classes/Init.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Classes/Init.v b/theories/Classes/Init.v index 8a04206bb2..8732305953 100644 --- a/theories/Classes/Init.v +++ b/theories/Classes/Init.v @@ -23,7 +23,7 @@ Typeclasses Opaque id const flip compose arrow impl iff not all. (** Apply using the same opacity information as typeclass proof search. *) -Ltac class_apply c := autoapply c using typeclass_instances. +Ltac class_apply c := autoapply c with typeclass_instances. (** The unconvertible typeclass, to test that two objects of the same type are actually different. *) |
