summaryrefslogtreecommitdiff
path: root/demo
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-09-17 19:01:04 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-09-17 19:01:04 -0400
commit58d54b5e088ae016b6ec2f38bc2faa9852b3aacd (patch)
treed0d80327ab5a8d6c922a25646ac1c48ee20a57b9 /demo
parentcdef77b52aeb37ea688bd93a37eb82132a1c99ef (diff)
Grid changed to use Dlist.replace; filters stopped working
Diffstat (limited to 'demo')
-rw-r--r--demo/more/dlist.ur2
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/more/dlist.ur b/demo/more/dlist.ur
index 6e660ab8..02286965 100644
--- a/demo/more/dlist.ur
+++ b/demo/more/dlist.ur
@@ -58,7 +58,7 @@ fun replace [t] dl ls =
case ls of
[] => return acc
| x :: ls =>
- this <- source (Cons (x, tl));
+ this <- source (Cons (x, acc));
build ls this
in
hd <- build (List.rev ls) tl;