From e03770064fc9c91b98c750ea92f962effe2d6ba4 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Thu, 28 Feb 2008 01:55:11 +0000 Subject: [PATCH] minor reformatting svn: r8820 original commit: 469203f307c66be241e26e35710d73822e591bd3 --- collects/scribblings/scribble/how-to.scrbl | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/collects/scribblings/scribble/how-to.scrbl b/collects/scribblings/scribble/how-to.scrbl index ab63fcb5..22631570 100644 --- a/collects/scribblings/scribble/how-to.scrbl +++ b/collects/scribblings/scribble/how-to.scrbl @@ -18,21 +18,21 @@ To document a collection or @|PLaneT| package: @itemize{ - @item{Create a file in your collection or planet package with the - file extension @filepath{.scrbl}. Beware that the file name you - choose will determine the output directory's name. The - remainder of these instructions assume that the file is called - @filepath{manual.scrbl}.} + @item{Create a file in your collection or planet package with the + file extension @filepath{.scrbl}. Beware that the file name + you choose will determine the output directory's name. The + remainder of these instructions assume that the file is called + @filepath{manual.scrbl}.} - @item{Start @filepath{manual.scrbl} like this: - @verbatim[#:indent 2]|{ - #lang scribble/doc - @(require scribble/manual) + @item{Start @filepath{manual.scrbl} like this: + @verbatim[#:indent 2]|{ + #lang scribble/doc + @(require scribble/manual) - @title{My Library} + @title{My Library} - Welcome to my documentation: @scheme[(list 'testing 1 2 3)]. - }| + Welcome to my documentation: @scheme[(list 'testing 1 2 3)]. + }| The first line starts the file in ``text'' mode, and introduces the @litchar["@"] syntax to use Scheme bindings.