From f22ec82d9697de8e9d441c443f197db8c986658b Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Mon, 22 Aug 2011 17:11:35 -0500 Subject: [PATCH] fix brain fart closes PR 12126 --- collects/scribblings/guide/contracts-simple-function.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/guide/contracts-simple-function.scrbl b/collects/scribblings/guide/contracts-simple-function.scrbl index 94f3f02be5..6ffb1f9e1a 100644 --- a/collects/scribblings/guide/contracts-simple-function.scrbl +++ b/collects/scribblings/guide/contracts-simple-function.scrbl @@ -19,7 +19,7 @@ range. Functions in a programming language have domains and ranges, too, and a contract can ensure that a function receives only values in its -range and produces only values in its domain. A @racket[->] creates +domain and produces only values in its range. A @racket[->] creates such a contract for a function. The forms after a @racket[->] specify contracts for the domains and finally a contract for the range.