From b155c5e8f01f499629b764b3d97e57c825d5e8a5 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Sun, 5 Apr 2009 17:46:20 +0000 Subject: [PATCH] Changed @itemize{...} to @itemize[...] (done after comparing the doc tree and verifying that there are no changes). (Also fixed a few bugs that were in the code) svn: r14427 original commit: c0a8a0122200209e38dff1959d79b58f847814db --- collects/typed-scheme/ts-guide.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/typed-scheme/ts-guide.scrbl b/collects/typed-scheme/ts-guide.scrbl index 079a86fb..d3af990c 100644 --- a/collects/typed-scheme/ts-guide.scrbl +++ b/collects/typed-scheme/ts-guide.scrbl @@ -62,11 +62,11 @@ typed-scheme There are two differences between these programs: -@itemize{ +@itemize[ @item*[@elem{The Language}]{@schememodname[scheme] has been replaced by @schememodname[typed-scheme].} @item*[@elem{The Type Annotation}]{We have added a type annotation -for the @scheme[fib] function, using the @scheme[:] form.} } +for the @scheme[fib] function, using the @scheme[:] form.} ] In general, these are most of the changes that have to be made to a PLT Scheme program to transform it into a Typed Scheme program.