From 0a830f4c8f054576e2444b0924bb8a8bfbbc6dc6 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Sat, 12 Jul 2008 07:02:50 +0000 Subject: [PATCH] added a space after mathimpl/mathspec header, so it can be used independent of an empty line at the beginning svn: r10722 original commit: 7c7bc0fd062251c5c37fce5d7b4d60214ed8f072 --- collects/scribble/manual.ss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribble/manual.ss b/collects/scribble/manual.ss index a3d5ef01..ca96fe74 100644 --- a/collects/scribble/manual.ss +++ b/collects/scribble/manual.ss @@ -2358,10 +2358,10 @@ (defmethod #:mode public (name arg ...) result-type desc ...)])) (define-syntax-rule (methimpl body ...) - (make-impl (lambda () (list (italic "Default implementation:") body ...)))) + (make-impl (lambda () (list (italic "Default implementation:") " " body ...)))) (define-syntax-rule (methspec body ...) - (make-spec (lambda () (list (italic "Specification:") body ...)))) + (make-spec (lambda () (list (italic "Specification:") " " body ...)))) (define (*this-obj cname) (name-this-object cname))