Lots of documentation formatting.

Started as fixing misindented definitions, then more indentations, then
a bunch of similar things (square brackets, huge spaces at end-of-lines,
etc).

original commit: d61eb53686
This commit is contained in:
Eli Barzilay 2011-08-15 07:50:04 -04:00
parent 62e93cf2a4
commit c75da5fd97

View File

@ -110,11 +110,11 @@ Raised for errors when handling cookies.}
@subsection{Creating a cookie} @subsection{Creating a cookie}
@racketblock[ @racketblock[
(let ((c (cookie:add-max-age (let ([c (cookie:add-max-age
(cookie:add-path (cookie:add-path
(set-cookie "foo" "bar") (set-cookie "foo" "bar")
"/servlets") "/servlets")
3600))) 3600)])
(print-cookie c)) (print-cookie c))
] ]