From 008ecc173f02c32476f65f3b760351a9d3e3f296 Mon Sep 17 00:00:00 2001 From: Sam Tobin-Hochstadt Date: Mon, 1 Mar 2010 22:32:48 +0000 Subject: [PATCH] fix doc typo svn: r18417 original commit: 079c430e89846fda4e6925abda664300d1142572 --- collects/typed-scheme/scribblings/ts-reference.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/typed-scheme/scribblings/ts-reference.scrbl b/collects/typed-scheme/scribblings/ts-reference.scrbl index e9cd7889..f500ee1b 100644 --- a/collects/typed-scheme/scribblings/ts-reference.scrbl +++ b/collects/typed-scheme/scribblings/ts-reference.scrbl @@ -354,7 +354,7 @@ The @scheme[id]s are assumed to have the types ascribed to them; these types are converted to contracts and checked dynamically. @examples[#:eval the-eval -(with-type Number 3) +(with-type #:result Number 3) ((with-type #:result (Number -> Number) (lambda: ([x : Number]) (add1 x)))