Skip to content
Snippets Groups Projects

Fix documentation of `select` to state that it selects the "last" hypothesis.

Merged Robbert Krebbers requested to merge robbert/select_last into master
1 unresolved thread
Files
2
+ 3
0
@@ -51,3 +51,6 @@ Qed.
Goal (n : nat), m : nat, True.
Proof. intros ?. rename select nat into m. exists m. done. Qed.
Goal (P : nat Prop), P 3 P 4 P 4.
Proof. intros. rename select (P _) into HP4. apply HP4. Qed.
Loading