diff options
| author | Maxime Dénès | 2020-09-18 08:25:22 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2020-09-18 12:58:39 +0200 |
| commit | 286a51836e4a6b0f710b125e6cc6b2b19e455ff3 (patch) | |
| tree | 101485965159482c82c675106637ac48e747bb5c /doc/sphinx/proof-engine | |
| parent | ff508baf8de691dfa94b9d65d7c77cf395127381 (diff) | |
Improve `simple apply` example
The example showing the difference between `apply` and `simple apply`
used to depend on the order and the heuristics used on unification
problems. We make it independent for better clarity and stability.
Fixes https://github.com/coq/coq/issues/13023
Diffstat (limited to 'doc/sphinx/proof-engine')
| -rw-r--r-- | doc/sphinx/proof-engine/tactics.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/sphinx/proof-engine/tactics.rst b/doc/sphinx/proof-engine/tactics.rst index 2f505e7448..5dc15a02c4 100644 --- a/doc/sphinx/proof-engine/tactics.rst +++ b/doc/sphinx/proof-engine/tactics.rst @@ -737,7 +737,7 @@ Applying theorems .. coqtop:: all Definition id (x : nat) := x. - Parameter H : forall y, id y = y. + Parameter H : forall x y, id x = y. Goal O = O. Fail simple apply H. |
