From 8b4f8541c33b0a0d72eb1aaa4e91065d3b8065de Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Wed, 6 Jan 2016 15:37:01 -0600 Subject: [PATCH] remove extraneous ? --- 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 b21ab2794c..25b2aacab6 100644 --- a/pkgs/racket-doc/scribblings/reference/contracts.scrbl +++ b/pkgs/racket-doc/scribblings/reference/contracts.scrbl @@ -2290,8 +2290,8 @@ the other; both are provided for convenience and clarity. Returns @racket[#t] when @racket[b] does not have both parties. } -@defproc[(blame-add-missing-party? [b (and/c blame? blame-missing-party?)] - [missing-party any/c]) +@defproc[(blame-add-missing-party [b (and/c blame? blame-missing-party?)] + [missing-party any/c]) (and/c blame? (not/c blame-missing-party?))]{ Produces a new blame object like @racket[b], except that the missing party is replaced with @racket[missing-party].