Skip to content

Commit cf13cfd

Browse files
committed
chore(Data/Setoid/Basic): kerLift_eq_apply_out -> apply_out_eq_kerLift
1 parent 4f12547 commit cf13cfd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Mathlib/Data/Setoid/Basic.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,8 @@ abbrev kerLift (f : α → β) : Quotient (ker f) → β := Quotient.lift f fun
322322
@[simp]
323323
theorem kerLift_mk (f : α → β) (x : α) : kerLift f ⟦x⟧ = f x := rfl
324324

325-
theorem kerLift_eq_apply_out (f : α → β) (q : Quotient (ker f)) : kerLift f q = f q.out := by
326-
nth_rw 1 [← q.out_eq]
325+
theorem apply_out_eq_kerLift (f : α → β) (q : Quotient (ker f)) : f q.out = kerLift f q := by
326+
nth_rw 2 [← q.out_eq]
327327
rfl
328328

329329
/-- Given a map f from α to β, the natural map from the quotient of α by the kernel of f is

0 commit comments

Comments
 (0)