diff demo/crud.ur @ 1303:c7b9a33c26c8

Hopeful fix for the Great Unification Bug
author Adam Chlipala <adam@chlipala.net>
date Sun, 10 Oct 2010 14:41:03 -0400
parents d008c4c43a0a
children 6bc2a8cb3a67
line wrap: on
line diff
--- a/demo/crud.ur	Sun Oct 10 13:07:38 2010 -0400
+++ b/demo/crud.ur	Sun Oct 10 14:41:03 2010 -0400
@@ -78,7 +78,7 @@
 
           <form>
             {@foldR [colMeta] [fn cols => xml form [] (map snd cols)]
-              (fn [nm :: Name] [t ::_] [rest ::_] [[nm] ~ rest] (col : colMeta t) (acc : xml form [] (map snd rest)) => <xml>
+              (fn [nm :: Name] [t ::_] [rest ::_] [[nm] ~ rest] (col : colMeta t) acc => <xml>
                 <li> {cdata col.Nam}: {col.Widget [nm]}</li>
                 {useMore acc}
               </xml>)
@@ -128,7 +128,7 @@
                 None => return <xml><body>Not found!</body></xml>
               | Some fs => return <xml><body><form>
                 {@foldR2 [fst] [colMeta] [fn cols => xml form [] (map snd cols)]
-                  (fn [nm :: Name] [t ::_] [rest ::_] [[nm] ~ rest] (v : t.1) (col : colMeta t)
+                  (fn [nm :: Name] [t ::_] [rest ::_] [[nm] ~ rest] v (col : colMeta t)
                                    (acc : xml form [] (map snd rest)) =>
                       <xml>
                         <li> {cdata col.Nam}: {col.WidgetPopulated [nm] v}</li>