Skip to content

Commit

Permalink
fix line lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsnew authored and stschaef committed Jul 5, 2023
1 parent 44c8e1b commit 9bdb1a8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Cubical/Categories/Constructions/DisplayedCategory.agda
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ module _ {ℓC ℓC' : Level} (C : Category ℓC ℓC') where

open Category

record DisplayedCategory (ℓP : Level) : Type (ℓ-max (ℓ-max ℓC ℓC') (ℓ-suc ℓP)) where
record DisplayedCategory (ℓP : Level) : Type (ℓ-max (ℓ-max ℓC ℓC') (ℓ-suc ℓP))
where
field
D-ob : C .ob Type ℓP
D-Hom_[_,_] : {a b : C .ob} (f : C [ a , b ])
Expand Down Expand Up @@ -66,4 +67,5 @@ module _ {C : Category ℓC ℓC'} (D : DisplayedCategory C ℓP) where
S-id : {c} d S-hom (C .id {c}) d d ≡ D .D-id
S-seq : {c c' c''} {d d' d''}
(f : C [ c , c' ])(f' : C [ c' , c'' ])
S-hom (f ⋆⟨ C ⟩ f') d d'' ≡ D ._D-⋆_ (S-hom f d d') (S-hom f' d' d'')
S-hom (f ⋆⟨ C ⟩ f') d d''
≡ D ._D-⋆_ (S-hom f d d') (S-hom f' d' d'')

0 comments on commit 9bdb1a8

Please sign in to comment.