From cd0350c883137e59c5865cfa62743185c5f62df0 Mon Sep 17 00:00:00 2001 From: Jasper Pilgrim Date: Sat, 5 May 2018 04:56:40 -0500 Subject: [PATCH] Fix typo (pre-heating -> preheating) --- pkgs/racket-doc/scribblings/guide/simple-syntax.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-doc/scribblings/guide/simple-syntax.scrbl b/pkgs/racket-doc/scribblings/guide/simple-syntax.scrbl index 37f6172bcd..23428b1842 100644 --- a/pkgs/racket-doc/scribblings/guide/simple-syntax.scrbl +++ b/pkgs/racket-doc/scribblings/guide/simple-syntax.scrbl @@ -107,7 +107,7 @@ evaluated only for some side-effect, such as printing. @defexamples[ #:eval ex-eval (define (bake flavor) - (printf "pre-heating oven...\n") + (printf "preheating oven...\n") (string-append flavor " pie")) (bake "apple") ]