From f8f3ddbc941ab848330b4f8267386977ae860720 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Tue, 27 Jul 2010 14:37:28 -0500 Subject: [PATCH] typo. closes pr 11052 --- collects/scribblings/guide/contracts-general-function.scrbl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/collects/scribblings/guide/contracts-general-function.scrbl b/collects/scribblings/guide/contracts-general-function.scrbl index 653e8d99d9..a4fe56ad04 100644 --- a/collects/scribblings/guide/contracts-general-function.scrbl +++ b/collects/scribblings/guide/contracts-general-function.scrbl @@ -12,7 +12,8 @@ The @racket[->] contract constructor works for functions that take a fixed number of arguments and where the result contract is independent of the input arguments. To support other kinds of functions, Racket -supplies additional contract constructors, notable @racket[->]. +supplies additional contract constructors, notably @racket[->*] and +@racket[->d]. @ctc-section[#:tag "optional"]{Optional Arguments}