summaryrefslogtreecommitdiff
path: root/Precond.agda
diff options
context:
space:
mode:
authorHelmut Grohne <grohne@cs.uni-bonn.de>2014-11-26 15:32:21 +0100
committerHelmut Grohne <grohne@cs.uni-bonn.de>2014-11-26 15:32:21 +0100
commit69f47cad0ac14a7549e1e94b9f9a40f9935ad99e (patch)
tree33f404a8c720b979f58943ea96cf1498149b3f0b /Precond.agda
parenta736eed95090ec104edbfbc9ea08bc265c618678 (diff)
downloadbidiragda-69f47cad0ac14a7549e1e94b9f9a40f9935ad99e.tar.gz
fix compilation against agda stdlib 0.9
Diffstat (limited to 'Precond.agda')
-rw-r--r--Precond.agda2
1 files changed, 1 insertions, 1 deletions
diff --git a/Precond.agda b/Precond.agda
index ffbe0e7..852480d 100644
--- a/Precond.agda
+++ b/Precond.agda
@@ -4,7 +4,7 @@ module Precond (Carrier : Set) (deq : Decidable {A = Carrier} _≡_) where
open import Data.Nat using (ℕ)
open import Data.Fin using (Fin ; zero ; suc)
-open import Data.Fin.Props using (_≟_)
+open import Data.Fin.Properties using (_≟_)
open import Data.List using (List ; [] ; _∷_)
open import Level using () renaming (zero to ℓ₀)
import Category.Monad