Skip to content

Commit

Permalink
fix: Make rightInverse_inv use RightInverse. (#7792)
Browse files Browse the repository at this point in the history
fix: Make `rightInverse_inv` use `RightInverse`.



Co-authored-by: Mario Carneiro <di.gama@gmail.com>
  • Loading branch information
newell and digama0 committed Oct 23, 2023
1 parent 49b7459 commit 16ab7dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mathlib/Algebra/Group/Basic.lean
Expand Up @@ -280,7 +280,7 @@ theorem leftInverse_inv : LeftInverse (fun a : G ↦ a⁻¹) fun a ↦ a⁻¹ :=
#align left_inverse_neg leftInverse_neg

@[to_additive]
theorem rightInverse_inv : LeftInverse (fun a : G ↦ a⁻¹) fun a ↦ a⁻¹ :=
theorem rightInverse_inv : RightInverse (fun a : G ↦ a⁻¹) fun a ↦ a⁻¹ :=
inv_inv
#align right_inverse_inv rightInverse_inv
#align right_inverse_neg rightInverse_neg
Expand Down

0 comments on commit 16ab7dd

Please sign in to comment.