Skip to content

Commit 14c9438

Browse files
committed
Fix one warning
1 parent 1a644b9 commit 14c9438

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Carleson/TwoSidedCarleson/RestrictedWeakType.lean

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,7 @@ lemma interpolation_param_interpolation {t₀ t₁ t : ℝ} (h : t₀ ≠ t₁)
100100
t = (1 - interpolation_param t₀ t₁ t) * t₀ + interpolation_param t₀ t₁ t * t₁ := by
101101
have : t₁ - t₀ ≠ 0 := sub_ne_zero_of_ne (id (Ne.symm h))
102102
unfold interpolation_param
103-
rw [← div_self this, div_sub_div_same]
104-
symm
105-
rw [div_mul_eq_mul_div, div_mul_eq_mul_div, div_add_div_same, div_eq_iff this]
106-
ring
103+
field_simp; ring
107104

108105
--TODO: move
109106
lemma interpolation_param_mem_Ioo {t₀ t₁ t : ℝ} (h : t ∈ Ioo t₀ t₁) :

0 commit comments

Comments
 (0)