From 244d9957f198180e0e63f66cce3ac44b0f38a137 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Sun, 1 May 2016 06:27:44 -0500 Subject: [PATCH] fix syntax error in flat-contract-with-reason docs --- 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 6dbfb557c6..5404c55a8c 100644 --- a/pkgs/racket-doc/scribblings/reference/contracts.scrbl +++ b/pkgs/racket-doc/scribblings/reference/contracts.scrbl @@ -126,8 +126,8 @@ and how they can be used to implement contracts. @section[#:tag "data-structure-contracts"]{Data-structure Contracts} @declare-exporting-ctc[racket/contract/base] -@defproc[(flat-contract-with-reason [get-reason (-> any/c (or/c boolean? (-> blame? any)))] - flat-contract?)]{ +@defproc[(flat-contract-with-reason [get-reason (-> any/c (or/c boolean? (-> blame? any)))]) + flat-contract?]{ Provides a way to use flat contracts that, when a contract fails, provide more information about the failure.