Skip to content

Commit

Permalink
feat: port CategoryTheory.Limits.Shapes.Images (#2615)
Browse files Browse the repository at this point in the history
Co-authored-by: Matthew Robert Ballard <100034030+mattrobball@users.noreply.github.com>
  • Loading branch information
mattrobball and mattrobball committed Mar 7, 2023
1 parent b66eff5 commit 367e5e6
Show file tree
Hide file tree
Showing 3 changed files with 1,071 additions and 1 deletion.
1 change: 1 addition & 0 deletions Mathlib.lean
Expand Up @@ -315,6 +315,7 @@ import Mathlib.CategoryTheory.Limits.Shapes.DisjointCoproduct
import Mathlib.CategoryTheory.Limits.Shapes.Equalizers
import Mathlib.CategoryTheory.Limits.Shapes.Equivalence
import Mathlib.CategoryTheory.Limits.Shapes.FiniteLimits
import Mathlib.CategoryTheory.Limits.Shapes.Images
import Mathlib.CategoryTheory.Limits.Shapes.Products
import Mathlib.CategoryTheory.Limits.Shapes.Pullbacks
import Mathlib.CategoryTheory.Limits.Shapes.RegularMono
Expand Down
2 changes: 1 addition & 1 deletion Mathlib/CategoryTheory/Category/Basic.lean
Expand Up @@ -259,7 +259,7 @@ class Epi (f : X ⟶ Y) : Prop where
See <https://stacks.math.columbia.edu/tag/003B>.
-/
class Mono (f : X ⟶ Y) : Prop where
/-- A morphism `f` is an epimorphism if it can be cancelled when postcomposed. -/
/-- A morphism `f` is an monomorphism if it can be cancelled when postcomposed. -/
right_cancellation : ∀ {Z : C} (g h : Z ⟶ X), g ≫ f = h ≫ f → g = h
#align category_theory.mono CategoryTheory.Mono

Expand Down

0 comments on commit 367e5e6

Please sign in to comment.