From c75da5fd97dbc630c3b530b90435b426f19bd85f Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Mon, 15 Aug 2011 07:50:04 -0400 Subject: [PATCH] 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: d61eb53686f735b979a60dc6f9efd3d2aa9777d9 --- collects/net/scribblings/cookie.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/net/scribblings/cookie.scrbl b/collects/net/scribblings/cookie.scrbl index 9f30a58e21..ecd0b22d6f 100644 --- a/collects/net/scribblings/cookie.scrbl +++ b/collects/net/scribblings/cookie.scrbl @@ -110,11 +110,11 @@ Raised for errors when handling cookies.} @subsection{Creating a cookie} @racketblock[ -(let ((c (cookie:add-max-age +(let ([c (cookie:add-max-age (cookie:add-path (set-cookie "foo" "bar") "/servlets") - 3600))) + 3600)]) (print-cookie c)) ]