summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-13 10:33:30 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-13 10:33:30 -0400
commit83f4f01d3475248237bfea2e01d6e007c23153ff (patch)
tree057ff0689815f5f96624a4118cb0a3c85a8c89df /lib
parent2ad30811b217c0880f8ea65a7da0f755ec0cf9e6 (diff)
Remove unneeded 'rec' in Reduce
Diffstat (limited to 'lib')
-rw-r--r--lib/top.ur2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/top.ur b/lib/top.ur
index 4df12ff0..d94f8bf6 100644
--- a/lib/top.ur
+++ b/lib/top.ur
@@ -8,7 +8,7 @@ fun compose (t1 ::: Type) (t2 ::: Type) (t3 ::: Type) (f1 : t2 -> t3) (f2 : t1 -
fun txt (t ::: Type) (ctx ::: {Unit}) (use ::: {Type}) (sh : show t) (v : t) = cdata (show sh v)
-val foldTR2 (tf1 :: Type -> Type) (tf2 :: Type -> Type) (tr :: {Type} -> Type)
+fun foldTR2 (tf1 :: Type -> Type) (tf2 :: Type -> Type) (tr :: {Type} -> Type)
(f : nm :: Name -> t :: Type -> rest :: {Type} -> [nm] ~ rest
-> tf1 t -> tf2 t -> tr rest -> tr ([nm = t] ++ rest))
(i : tr []) =