From 4b69cf6995ab603222360671a1e9198f4c505062 Mon Sep 17 00:00:00 2001 From: Philip McGrath Date: Wed, 13 Mar 2019 07:39:51 -0400 Subject: [PATCH] typo fix in contracts documentation (#2530) --- pkgs/racket-doc/scribblings/reference/contracts.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-doc/scribblings/reference/contracts.scrbl b/pkgs/racket-doc/scribblings/reference/contracts.scrbl index 652a67c7e9..03cfe525e7 100644 --- a/pkgs/racket-doc/scribblings/reference/contracts.scrbl +++ b/pkgs/racket-doc/scribblings/reference/contracts.scrbl @@ -1189,7 +1189,7 @@ the keyword arguments must match the corresponding contracts. For example: @racketblock[(integer? #:invert? boolean? . -> . integer?)] is a contract on a function that accepts a by-position argument that -is an integer and an @racket[#:invert] argument that is a boolean. +is an integer and an @racket[#:invert?] argument that is a boolean. @examples[#:eval (contract-eval) #:once (define/contract (maybe-invert i #:invert? b)