minor reformatting

svn: r8820
This commit is contained in:
Eli Barzilay 2008-02-28 01:55:11 +00:00
parent b9d0295960
commit 469203f307

View File

@ -18,21 +18,21 @@ To document a collection or @|PLaneT| package:
@itemize{ @itemize{
@item{Create a file in your collection or planet package with the @item{Create a file in your collection or planet package with the
file extension @filepath{.scrbl}. Beware that the file name you file extension @filepath{.scrbl}. Beware that the file name
choose will determine the output directory's name. The you choose will determine the output directory's name. The
remainder of these instructions assume that the file is called remainder of these instructions assume that the file is called
@filepath{manual.scrbl}.} @filepath{manual.scrbl}.}
@item{Start @filepath{manual.scrbl} like this: @item{Start @filepath{manual.scrbl} like this:
@verbatim[#:indent 2]|{ @verbatim[#:indent 2]|{
#lang scribble/doc #lang scribble/doc
@(require scribble/manual) @(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 The first line starts the file in ``text'' mode, and
introduces the @litchar["@"] syntax to use Scheme bindings. introduces the @litchar["@"] syntax to use Scheme bindings.