From 113f8895924974fbab59431e355133883736475e Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 3 Aug 2011 08:46:33 -0600 Subject: [PATCH] correct correction --- collects/scribblings/guide/unit.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/guide/unit.scrbl b/collects/scribblings/guide/unit.scrbl index 99c954d18d..096f22be15 100644 --- a/collects/scribblings/guide/unit.scrbl +++ b/collects/scribblings/guide/unit.scrbl @@ -40,7 +40,7 @@ The interface of a unit is described in terms of following signature, placed in a @filepath{toy-factory-sig.rkt} file, describes the exports of a component that implements a toy factory: -@margin-note{By convention, signature names start with @litchar{^}.} +@margin-note{By convention, signature names end with @litchar{^}.} @racketmod/eval[[#:file "toy-factory-sig.rkt" @@ -59,7 +59,7 @@ An implementation of the @racket[toy-factory^] signature is written using @racket[define-unit] with an @racket[export] clause that names @racket[toy-factory^]: -@margin-note{By convention, unit names start with @litchar["@"].} +@margin-note{By convention, unit names end with @litchar["@"].} @racketmod/eval[[#:file "simple-factory-unit.rkt"