Make explicit argument

This commit is contained in:
Frederik Hanghøj Iversen 2018-02-23 10:36:59 +01:00
parent cc1ddaac9f
commit 3032dc6130

View file

@ -50,7 +50,7 @@ open Functor
module _
{a b : Level}
{ 𝔻 : Category a b}
{F : RawFunctor 𝔻}
(F : RawFunctor 𝔻)
where
private
module 𝔻 = IsCategory (isCategory 𝔻)
@ -77,7 +77,7 @@ module _
IsFunctorIsProp' : IsProp' λ i IsFunctor _ _ (F i)
IsFunctorIsProp' isF0 isF1 = lemPropF {B = IsFunctor 𝔻}
(\ F propIsFunctor {F = F}) (\ i F i)
(\ F propIsFunctor F) (\ i F i)
where
open import Cubical.NType.Properties using (lemPropF)