Skip to content

Commit

Permalink
Fix build[-*]-contract-property contract in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
shhyou authored and rfindler committed Aug 8, 2018
1 parent 0c8c643 commit b282907
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions pkgs/racket-doc/scribblings/reference/contracts.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -2745,11 +2745,11 @@ returns @racket[#f] but @racket[value-blame] returns @racket[#f].
[#:generate
generate
(->i ([c contract?])
([generator
(c)
(-> (and/c positive? real?)
(or/c (-> (or/c contract-random-generate-fail? c))
#f))]))
[generator
(c)
(-> (and/c positive? real?)
(or/c (-> (or/c contract-random-generate-fail? c))
#f))])
(λ (c) (λ (fuel) #f))]
[#:list-contract? is-list-contract? (-> contract? boolean?) (λ (c) #f)])
flat-contract-property?]
Expand Down Expand Up @@ -2791,21 +2791,21 @@ returns @racket[#f] but @racket[value-blame] returns @racket[#f].
[#:generate
generate
(->i ([c contract?])
([generator
(c)
(-> (and/c positive? real?)
(or/c (-> (or/c contract-random-generate-fail? c))
#f))]))
[generator
(c)
(-> (and/c positive? real?)
(or/c (-> (or/c contract-random-generate-fail? c))
#f))])
(λ (c) (λ (fuel) #f))]
[#:exercise
exercise
(->i ([c contract?])
([result
(c)
(-> (and/c positive? real?)
(values
(-> c void?)
(listof contract?)))]))
[result
(c)
(-> (and/c positive? real?)
(values
(-> c void?)
(listof contract?)))])
(λ (c) (λ (fuel) (values void '())))]
[#:list-contract? is-list-contract? (-> contract? boolean?) (λ (c) #f)])
chaperone-contract-property?]
Expand Down Expand Up @@ -2847,21 +2847,21 @@ returns @racket[#f] but @racket[value-blame] returns @racket[#f].
[#:generate
generate
(->i ([c contract?])
([generator
(c)
(-> (and/c positive? real?)
(or/c (-> (or/c contract-random-generate-fail? c))
#f))]))
[generator
(c)
(-> (and/c positive? real?)
(or/c (-> (or/c contract-random-generate-fail? c))
#f))])
(λ (c) (λ (fuel) #f))]
[#:exercise
exercise
(->i ([c contract?])
([result
(c)
(-> (and/c positive? real?)
(values
(-> c void?)
(listof contract?)))]))
[result
(c)
(-> (and/c positive? real?)
(values
(-> c void?)
(listof contract?)))])
(λ (c) (λ (fuel) (values void '())))]
[#:list-contract? is-list-contract? (-> contract? boolean?) (λ (c) #f)])
contract-property?])]{
Expand Down

0 comments on commit b282907

Please sign in to comment.