Navigation Menu

Skip to content

Commit

Permalink
fix Burroughs's name
Browse files Browse the repository at this point in the history
  • Loading branch information
mflatt committed Dec 16, 2015
1 parent 3dc4913 commit 11f76cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/racket-doc/scribblings/guide/let.scrbl
Expand Up @@ -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)
Expand All @@ -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)))
Expand Down

0 comments on commit 11f76cb

Please sign in to comment.