typo fix in contracts documentation (#2530)

This commit is contained in:
Philip McGrath 2019-03-13 07:39:51 -04:00 committed by Paulo Matos
parent b8b0260e50
commit 4b69cf6995

View File

@ -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)