commit 206ea43f10b54f11add073d346e20854ab3e179d
parent cc117f01274ee0200db69b2fdf0a526d64f15c7d
Author: Greg Hendershott <greghendershott@gmail.com>
Date: Fri, 26 Oct 2012 11:50:11 -0400
Change a couple racket to codeblock
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/main.rkt b/main.rkt
@@ -153,11 +153,11 @@ search-and-replace.
Maybe you know that the usual way to define a function in Racket:
-@racket[(define (f x) ...)]
+@codeblock{(define (f x) ...)}
is shorthand for:
-@racket[(define f (lambda (x) ...))]
+@codeblock{(define f (lambda (x) ...))}
That shorthand lets you avoid typing @racket[lambda] and some parentheses.