Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Mathlib/Topology/Homeomorph/Defs.lean
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ structure Homeomorph (X : Type*) (Y : Type*) [TopologicalSpace X] [TopologicalSp
extends X ≃ Y where
/-- The forward map of a homeomorphism is a continuous function. -/
continuous_toFun : Continuous toFun := by
first | fun_prop | eta_expand; dsimp -failIfUnchanged; fun_prop
first | fun_prop | eta_expand; dsimp; fun_prop | skip
/-- The inverse map of a homeomorphism is a continuous function. -/
continuous_invFun : Continuous invFun := by
first | fun_prop | eta_expand; dsimp -failIfUnchanged; fun_prop
first | fun_prop | eta_expand; dsimp; fun_prop | skip

@[inherit_doc]
infixl:25 " ≃ₜ " => Homeomorph
Expand Down
Loading