Skip to content

Commit

Permalink
fix(category_theory/open_set): Restore the correct order on open_set
Browse files Browse the repository at this point in the history
  • Loading branch information
jcommelin committed Oct 12, 2018
1 parent 5c209ed commit c3fa976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion category_theory/examples/topological_spaces.lean
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ instance : has_coe (open_set X) (set X.α) := { coe := λ U, U.s }
instance : has_subset (open_set X) :=
{ subset := λ U V, U.s ⊆ V.s }

instance : preorder (open_set X) := by refine { le := (), .. } ; tidy
instance : preorder (open_set X) := by refine { le := (), .. } ; tidy

instance open_sets : small_category (open_set X) := by apply_instance

Expand Down

0 comments on commit c3fa976

Please sign in to comment.