Fix typo (pre-heating -> preheating)

This commit is contained in:
Jasper Pilgrim 2018-05-05 04:56:40 -05:00 committed by Matthew Flatt
parent 44b8e56ed0
commit cd0350c883

View File

@ -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")
]