File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ open import Data.Sum.Base as Sum hiding (map)
1212open import Data.Sum.Relation.Binary.Pointwise using (_⊎ₛ_; inj₁; inj₂)
1313open import Data.Product.Base as Product hiding (map)
1414open import Data.Product.Relation.Binary.Pointwise.NonDependent using (_×ₛ_)
15- open import Data.Empty using (⊥; ⊥-elim )
15+ open import Data.Empty using (⊥)
1616open import Effect.Applicative using (RawApplicative)
1717open import Effect.Monad using (RawMonad)
1818open import Function.Base using (_∘_; id)
@@ -123,7 +123,7 @@ private
123123 ⟦ F ⟧ (¬ ¬ P) → ¬ ¬ ⟦ F ⟧ P
124124¬¬-pull = sequence rawApplicative
125125 (λ f → f lower)
126- (λ f g → g (λ x → contradiction (λ y → g (λ _ → y)) (f x )))
126+ (λ f g → g (λ x → contradiction (λ y → g (λ _ → y)) (f x)))
127127
128128¬¬-remove : ∀ {p} (F : PropF p) {P} →
129129 ¬ ¬ ⟦ F ⟧ (¬ ¬ P) → ¬ ¬ ⟦ F ⟧ P
You can’t perform that action at this time.
0 commit comments