From a0f7301dff0b3fd93b0c3199bd18de2df553bb94 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 23 Jul 2008 15:01:13 +0000 Subject: [PATCH] remove misplaced #:evals in schemeblocks svn: r10877 --- collects/scribblings/guide/lists.scrbl | 2 -- 1 file changed, 2 deletions(-) diff --git a/collects/scribblings/guide/lists.scrbl b/collects/scribblings/guide/lists.scrbl index 7ab1ec6181..45fb0c0ec5 100644 --- a/collects/scribblings/guide/lists.scrbl +++ b/collects/scribblings/guide/lists.scrbl @@ -219,7 +219,6 @@ local function @scheme[iter] that accumulates the length in an argument @scheme[len]: @schemeblock[ -#:eval list-eval (define (my-length lst) (code:comment #, @t{local function @scheme[iter]:}) (define (iter lst len) @@ -262,7 +261,6 @@ accumulating the result list. The only catch is that the accumulated list will be backwards, so you'll have to reverse it at the very end: @schemeblock[ -#:eval list-eval (define (my-map f lst) (define (iter lst backward-result) (cond