Skip to content
Snippets Groups Projects
Commit ba3f6ce2 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Add documentation.

parent f7e06e4d
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,10 @@ Applying hypotheses and lemmas
------------------------------
- `iExact "H"` : finish the goal if the conclusion matches the hypothesis `H`
- `iAssumption` : finish the goal if the conclusion matches any hypothesis
- `iAssumption` : finish the goal if the conclusion matches any hypothesis in
either the proofmode or the Coq context. Only hypotheses in the Coq context
that are _syntactically_ of the shape `⊢ P` are recognized by this tactic
(this means that assumptions of the shape `P ⊢ Q` are not recognized).
- `iApply pm_trm` : match the conclusion of the current goal against the
conclusion of `pm_trm` and generates goals for the premises of `pm_trm`. See
proof mode terms below.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment