From 0f5308514a50bba2e631902d5dce0b064ecc5f22 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 19 Nov 2012 09:38:58 -0700 Subject: [PATCH] fix docs for `time' The `time' form allows multiple forms and as an internal-definition context. --- collects/scribblings/reference/time.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/reference/time.scrbl b/collects/scribblings/reference/time.scrbl index e0a0765d5f..6bff2c94db 100644 --- a/collects/scribblings/reference/time.scrbl +++ b/collects/scribblings/reference/time.scrbl @@ -138,11 +138,11 @@ The reliability of the timing numbers depends on the platform. If multiple Racket threads are running, then the reported time may include work performed by other threads.} -@defform[(time expr)]{ +@defform[(time body ...+)]{ Reports @racket[time-apply]-style timing information for the evaluation of @racket[expr] directly to the current output port. The -result is the result of @racket[expr].} +result is the result of the last @racket[body].} @; ----------------------------------------------------------------------