Skip to content

Commit

Permalink
Merge pull request #42 from gares/done
Browse files Browse the repository at this point in the history
adapt to coq/coq#19372
  • Loading branch information
aleksnanevski committed Jul 17, 2024
2 parents 6f46230 + 6bb3e1c commit e29ad1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/pred.v
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ Definition id_rel : Rel A := fun x y => y = x.
Lemma id_rel_refl : forall x, id_rel x x.
Proof. by []. Qed.
Lemma id_rel_sym : Symmetric id_rel.
Proof. by []. Qed.
Proof. by move=> *; split. Qed.
Lemma id_rel_trans : Transitive id_rel.
Proof. by move=> x y z ->->. Qed.
Lemma id_rel_func : functional id_rel.
Expand Down

0 comments on commit e29ad1f

Please sign in to comment.