From cc69ea07b7d2b5c8ece40b61830ef2342f273cf2 Mon Sep 17 00:00:00 2001 From: jamesmckinna <31931406+jamesmckinna@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:32:12 +0100 Subject: [PATCH] fixes #2467 (#2468) --- src/Data/List/Relation/Unary/All.agda | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Data/List/Relation/Unary/All.agda b/src/Data/List/Relation/Unary/All.agda index 3c65e60dff..86a59aca14 100644 --- a/src/Data/List/Relation/Unary/All.agda +++ b/src/Data/List/Relation/Unary/All.agda @@ -115,7 +115,7 @@ zip = zipWith id unzip : All (P ∩ Q) ⊆ All P ∩ All Q unzip = unzipWith id -module _(S : Setoid a ℓ) {P : Pred (Setoid.Carrier S) p} where +module _ (S : Setoid a ℓ) {P : Pred (Setoid.Carrier S) p} where open Setoid S renaming (refl to ≈-refl) open SetoidMembership S