From 07ec9bfd863f67954eaffc0ecbe2a8bb4a8538de Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Sat, 11 Oct 2008 19:09:50 +0000 Subject: [PATCH] fix whitespace before open-brace issues svn: r11991 original commit: cff6f07259c2fc2656c6e27aa07c19d5cf5331fe --- collects/typed-scheme/typed-scheme.scrbl | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/collects/typed-scheme/typed-scheme.scrbl b/collects/typed-scheme/typed-scheme.scrbl index 70161835..4c7a66e3 100644 --- a/collects/typed-scheme/typed-scheme.scrbl +++ b/collects/typed-scheme/typed-scheme.scrbl @@ -522,11 +522,12 @@ types. In most cases, use of @scheme[:] is preferred to use of @scheme[define:] (define-struct: name ([f : t] ...)) (define-struct: (name parent) ([f : t] ...)) (define-struct: (v ...) name ([f : t] ...)) -(define-struct: (v ...) (name parent) ([f : t] ...))]] -{Defines a @rtech{structure} with the name @scheme[name], where the fields - @scheme[f] have types @scheme[t]. The second and fourth forms define @scheme[name] - to be a substructure of @scheme[parent]. The last two forms define structures that - are polymorphic in the type variables @scheme[v].} +(define-struct: (v ...) (name parent) ([f : t] ...))]]{ + Defines a @rtech{structure} with the name @scheme[name], where the + fields @scheme[f] have types @scheme[t]. The second and fourth forms + define @scheme[name] to be a substructure of @scheme[parent]. The + last two forms define structures that are polymorphic in the type + variables @scheme[v].} @subsection{Type Aliases} @defform*[[(define-type-alias name t)