Skip to content

Commit a508980

Browse files
fix
1 parent 08dfcc1 commit a508980

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Mathlib/AlgebraicGeometry/Birational/Birational.lean

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ variable {X S : Scheme.{u}} (U : Opens X) (sX : X ⟶ S)
253253

254254
/-- A dense open set `U : Opens X` induces a partial isomorphism between `U` and `X`. -/
255255
@[simps]
256-
def Opens.partialIso_of_dense (hU : Dense (U : Set X)) : PartialIso U X where
256+
def Opens.partialIsoOfDense (hU : Dense (U : Set X)) : PartialIso U X where
257257
source := ⊤
258258
dense_source := dense_univ
259259
target := U
@@ -262,11 +262,11 @@ def Opens.partialIso_of_dense (hU : Dense (U : Set X)) : PartialIso U X where
262262

263263
/-- A dense open set `U : Opens X` is birational to `X`. -/
264264
lemma Opens.birational_of_dense (hU : Dense (U : Set X)) : Birational U X :=
265-
⟨U.partialIso_of_dense hU⟩
265+
⟨U.partialIsoOfDense hU⟩
266266

267267
/-- A dense open set `U : Opens X` of a scheme `X` over `S` is `S`-birational to `X`. -/
268268
lemma Opens.birationalOver_of_dense (hU : Dense (U : Set X)) : BirationalOver (U.ι ≫ sX) sX :=
269-
⟨U.partialIso_of_dense hU, by simp⟩
269+
⟨U.partialIsoOfDense hU, by simp⟩
270270

271271
/-- A dense open set `U : Opens X` of a `S`-rational scheme `X` is `S`-rational. -/
272272
lemma Opens.isRationalOver_of_dense (hU : Dense (U : Set X)) [IsRationalOver sX] :
@@ -283,7 +283,7 @@ variable {X U S : Scheme.{u}}
283283
/-- A dominant open immersion `f : U ⟶ X` induced a partial isomorphism between `U` and `X`. -/
284284
@[simps! source target iso]
285285
noncomputable def Hom.partialIso (f : U ⟶ X) [IsOpenImmersion f] [IsDominant f] :=
286-
f.isoOpensRange.toPartialIso.trans' (f.opensRange.partialIso_of_dense f.denseRange) rfl
286+
f.isoOpensRange.toPartialIso.trans' (f.opensRange.partialIsoOfDense f.denseRange) rfl
287287

288288
lemma Hom.birational (f : U ⟶ X) [IsOpenImmersion f] [IsDominant f] : Birational U X :=
289289
⟨f.partialIso⟩

0 commit comments

Comments
 (0)