From 11f76cbebfb5b6fa26b5db5146597c290ce1abeb Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Tue, 15 Dec 2015 12:26:19 -0700 Subject: [PATCH] fix Burroughs's name --- pkgs/racket-doc/scribblings/guide/let.scrbl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/racket-doc/scribblings/guide/let.scrbl b/pkgs/racket-doc/scribblings/guide/let.scrbl index 6611e653f9..b09855a43d 100644 --- a/pkgs/racket-doc/scribblings/guide/let.scrbl +++ b/pkgs/racket-doc/scribblings/guide/let.scrbl @@ -79,11 +79,11 @@ The difference is that each @racket[_id] is available for use in later visible one. @examples[ -(let* ([x (list "Borroughs")] +(let* ([x (list "Burroughs")] [y (cons "Rice" x)] [z (cons "Edgar" y)]) (list x y z)) -(let* ([name (list "Borroughs")] +(let* ([name (list "Burroughs")] [name (cons "Rice" name)] [name (cons "Edgar" name)]) name) @@ -93,7 +93,7 @@ In other words, a @racket[let*] form is equivalent to nested @racket[let] forms, each with a single binding: @interaction[ -(let ([name (list "Borroughs")]) +(let ([name (list "Burroughs")]) (let ([name (cons "Rice" name)]) (let ([name (cons "Edgar" name)]) name)))