From 79d8c80446f14053afc8b85da64bf70253fe81ce Mon Sep 17 00:00:00 2001 From: depsterr Date: Sat, 8 Oct 2022 13:20:24 +0200 Subject: [PATCH] CwF: undo the last change, since f will be inferred from the functor --- src/CwF.lagda.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CwF.lagda.md b/src/CwF.lagda.md index 38273eb..1f8e4c6 100644 --- a/src/CwF.lagda.md +++ b/src/CwF.lagda.md @@ -50,7 +50,7 @@ This file defines a CwF, without any particular type formers. Here CwFs are thou A category $\mathcal C$ is said to be a CwF if there is a contravariant functor $\mathcal F : \mathcal C^{op} \to \mathcal Fam$, and it fufills the laws of the GAT. ``` -record is-CwF {o h : _} (f : _) (𝓒 : Precategory o h) : Type (lsuc (o ⊔ h ⊔ f)) where +record is-CwF {o h f : _} (𝓒 : Precategory o h) : Type (lsuc (o ⊔ h ⊔ f)) where field 𝓕 : Functor (𝓒 ^op) (Fams f) ```