From 0512aa1e275a11e180373182c9f42b4fd2ee3f3f Mon Sep 17 00:00:00 2001 From: Kevin Tew Date: Wed, 19 Jan 2011 12:35:24 -0700 Subject: [PATCH] Type fix in guide --- collects/scribblings/guide/lists.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/guide/lists.scrbl b/collects/scribblings/guide/lists.scrbl index abc4a5da42..5ce20476a5 100644 --- a/collects/scribblings/guide/lists.scrbl +++ b/collects/scribblings/guide/lists.scrbl @@ -218,7 +218,7 @@ list is exhausted. You can avoid piling up additions by adding along the way. To accumulate a length this way, we need a function that takes both a -list and the length of the list seem so far; the code below uses a +list and the length of the list seen so far; the code below uses a local function @racket[iter] that accumulates the length in an argument @racket[len]: