From e9cd1e5595c97b5b581730b9f78010fff662934a Mon Sep 17 00:00:00 2001 From: Philip McGrath Date: Tue, 11 Apr 2017 14:00:43 -0500 Subject: [PATCH] Corrected Racket Reference for `get/build-late-neg-projection` and `get/build-val-first-projection`. Both had incorrectly shown that the returned function took a `contract?` as an extra first argument. --- pkgs/racket-doc/scribblings/reference/contracts.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/racket-doc/scribblings/reference/contracts.scrbl b/pkgs/racket-doc/scribblings/reference/contracts.scrbl index 2abc2bbdc6..afdf2bf34e 100644 --- a/pkgs/racket-doc/scribblings/reference/contracts.scrbl +++ b/pkgs/racket-doc/scribblings/reference/contracts.scrbl @@ -2321,7 +2321,7 @@ contracts. The error messages assume that the function named by } @defproc[(get/build-val-first-projection [c contract?]) - (-> contract? blame? (-> any/c (-> any/c any/c)))]{ + (-> blame? (-> any/c (-> any/c any/c)))]{ Returns the @racket[_val-first] projection for @racket[c]. See @racket[make-contract] for more details. @@ -2330,7 +2330,7 @@ contracts. The error messages assume that the function named by } @defproc[(get/build-late-neg-projection [c contract?]) - (-> contract? blame? (-> any/c any/c any/c))]{ + (-> blame? (-> any/c any/c any/c))]{ Returns the @racket[_late-neg] projection for @racket[c]. If @racket[c] does not have a @racket[_late-neg] contract,