From 5860cb892a81640b326f82e7169814f18099eb21 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Sun, 13 Jul 2008 13:50:14 +0000 Subject: [PATCH] fix problems in unbox doc (nested @scheme and shadowed box) svn: r10740 --- collects/scribblings/reference/data.scrbl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/reference/data.scrbl b/collects/scribblings/reference/data.scrbl index 815fca43ef..d56446e336 100644 --- a/collects/scribblings/reference/data.scrbl +++ b/collects/scribblings/reference/data.scrbl @@ -150,8 +150,10 @@ Returns a new immutable box that contains @scheme[v].} @defproc[(unbox [box box?]) any/c]{ -Returns the content of @scheme[box]. For any @scheme[v], -@scheme[(unbox (box @scheme[v]))] returns @scheme[v].} +Returns the content of @scheme[box].} + + +For any @scheme[v], @scheme[(unbox (box v))] returns @scheme[v]. @defproc[(set-box! [box (and/c box? (not/c immutable?))]