Skip to content

Commit

Permalink
made Property.handle private
Browse files Browse the repository at this point in the history
  • Loading branch information
TysonMN committed Mar 22, 2021
1 parent 94ea5a1 commit 91e5034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Hedgehog/Property.fs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ module Property =
let bind (k : 'a -> Property<'b>) (m : Property<'a>) : Property<'b> =
bindGen (toGen << k) (toGen m) |> ofGen

let handle (e : exn) =
let private handle (e : exn) =
Gen.constant (Journal.singletonMessage (string e), Failure) |> ofGen

let forAll (k : 'a -> Property<'b>) (gen : Gen<'a>) : Property<'b> =
Expand Down

0 comments on commit 91e5034

Please sign in to comment.