From 1b223aedec874dec7545ce44fd1f5c6578e0d4ed Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Sat, 9 Aug 2008 18:21:01 +0000 Subject: [PATCH] fixed typo svn: r11171 --- collects/scribblings/reference/contracts.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/reference/contracts.scrbl b/collects/scribblings/reference/contracts.scrbl index 267b8fe1c6..0f3bfa247d 100644 --- a/collects/scribblings/reference/contracts.scrbl +++ b/collects/scribblings/reference/contracts.scrbl @@ -399,7 +399,7 @@ return multiple values. If present, the @scheme[rest-expr] contract governs the arguments in the rest parameter. As an example, the contract -@schemeblock[(->* () (boolean? #:x integer?) #:rest (listof symbol?) (symbol?))] +@schemeblock[(->* () (boolean? #:x integer?) #:rest (listof symbol?) symbol?)] matches functions that optionally accept a boolean, an integer keyword argument @scheme[#:x] and arbitrarily more symbols, and that return a symbol.