From ef716ed15d259ba783cfab9ab6e687c9ecbe1a24 Mon Sep 17 00:00:00 2001 From: Andrew Gwozdziewycz Date: Wed, 22 Jul 2015 17:29:27 -0700 Subject: [PATCH] Replace celcius (a common mispelling) with celsius --- pkgs/racket-doc/scribblings/reference/define-struct.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/racket-doc/scribblings/reference/define-struct.scrbl b/pkgs/racket-doc/scribblings/reference/define-struct.scrbl index 033e301c1d..967813a6f4 100644 --- a/pkgs/racket-doc/scribblings/reference/define-struct.scrbl +++ b/pkgs/racket-doc/scribblings/reference/define-struct.scrbl @@ -136,12 +136,12 @@ multiple times, attaches a property value to the structure type; see @examples[#:eval posn-eval (struct point (x y) #:inspector #f) (point 3 5) - (struct celcius (temp) + (struct celsius (temp) #:guard (λ (temp name) (unless (and (real? temp) (>= temp -273.15)) (error "not a valid temperature")) temp)) - (celcius -275) + (celsius -275) ] @margin-note{Use the @racket[prop:procedure] property to implement an