Skip to content

Commit cc7bee0

Browse files
committed
fix: replace ? with ?_ in refine (anonymous goal syntax)
1 parent 06979d5 commit cc7bee0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Mathlib/Condensed/Solid.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ lemma isSolid_of_isLimit {J : Type*} [SmallCategory J]
146146
(c : Cone F) (hc : IsLimit c)
147147
(hj : ∀ j, (F.obj j).IsSolid) :
148148
c.pt.IsSolid := by
149-
refine ⟨fun X => ?⟩
149+
refine ⟨fun X => ?_
150150
rw [isIso_iff_bijective]
151151
set sol := (profiniteSolidification R).app X
152152
have bijFun : ∀ j, Function.Bijective ((yoneda.obj (F.obj j)).map sol.op) := by
@@ -176,7 +176,7 @@ lemma isSolid_of_isLimit {J : Type*} [SmallCategory J]
176176
naturality := fun j k φ => by
177177
change 𝟙 _ ≫ g_j k = g_j j ≫ F.map φ
178178
simp only [Category.id_comp]; exact (compat φ).symm } }
179-
refine ⟨hc.lift g_cone, ?⟩
179+
refine ⟨hc.lift g_cone, ?_
180180
change sol ≫ hc.lift g_cone = h_map
181181
apply hc.hom_ext; intro j
182182
have hfac : hc.lift g_cone ≫ c.π.app j = g_j j := hc.fac g_cone j

0 commit comments

Comments
 (0)