From 206ea43f10b54f11add073d346e20854ab3e179d Mon Sep 17 00:00:00 2001 From: Greg Hendershott Date: Fri, 26 Oct 2012 11:50:11 -0400 Subject: [PATCH] Change a couple racket to codeblock --- main.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.rkt b/main.rkt index d71fde8..a2dcbd6 100644 --- 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.