bkyk8rc3zvpnsf5inmcqq4n3k98cv6hj-my-site-hyper-literate-git.test.suzanne.soy-0.0.1

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit d7a02588da72fb8de9f07de60cf084044cd132b7
parent 7dd9a13ad63da534a8f5078e633ad934b14cac7c
Author: Matthew Flatt <mflatt@racket-lang.org>
Date:   Sun, 20 Apr 2014 20:10:20 -0600

scribble test: update expected result for `struct` indentation

original commit: a03c396691302f7163c5b5a9f855dfcdb76645d8

Diffstat:
Mpkgs/scribble-pkgs/scribble-test/tests/scribble/docs/manual.txt | 58+++++++++++++++++++++++++++++-----------------------------
1 file changed, 29 insertions(+), 29 deletions(-)

diff --git a/pkgs/scribble-pkgs/scribble-test/tests/scribble/docs/manual.txt b/pkgs/scribble-pkgs/scribble-test/tests/scribble/docs/manual.txt @@ -155,10 +155,10 @@ v : integer? A thing, again, with a documented value that’s too wide to fit on one line. -(struct pt (x y) -   #:extra-constructor-name make-pt) -  x : real? -  y : real? +(struct pt (x y) +    #:extra-constructor-name make-pt) +  x : real? +  y : real? A structure type with extra name. @@ -174,46 +174,46 @@ A structure type. A structure type, again. -(struct pn (x y) -   #:transparent) -  x : real? -  y : real? +(struct pn (x y) +    #:transparent) +  x : real? +  y : real? A transparent structure type, again. -(struct pn (x y) -   #:transparent) -  x : real? -  y : real? +(struct pn (x y) +    #:transparent) +  x : real? +  y : real? A transparent structure type, again. -(struct pn (x y) -   #:prefab) -  x : real? -  y : real? +(struct pn (x y) +    #:prefab) +  x : real? +  y : real? A prefab structure type, again. -(struct pn (x y) -   #:constructor-name pt) -  x : real? -  y : real? +(struct pn (x y) +    #:constructor-name pt) +  x : real? +  y : real? A structure type with name, again. -(struct pn (x y) -   #:extra-constructor-name pt) -  x : real? -  y : real? +(struct pn (x y) +    #:extra-constructor-name pt) +  x : real? +  y : real? A structure type with extra name, again. -(struct pt (x y) -   #:extra-constructor-name make-pt -   #:mutable) -  x : real? -  y : real? +(struct pt (x y) +    #:extra-constructor-name make-pt +    #:mutable) +  x : real? +  y : real? A mutable structure type with extra name, again.