Skip to content

Commit af6cb78

Browse files
authored
Merge pull request #378 from jmid/fix-paren
Remove unneeded parens in QCheck.Gen.fix signature
2 parents cd3a575 + 502f8e4 commit af6cb78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/QCheck.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ module Gen : sig
659659
to the size-bounded generator.
660660
@since 0.5 *)
661661

662-
val fix : (('a -> 'b t) -> ('a -> 'b t)) -> 'a -> 'b t
662+
val fix : (('a -> 'b t) -> 'a -> 'b t) -> 'a -> 'b t
663663
(** Parametrized fixpoint combinator for generating recursive values.
664664
665665
The fixpoint is parametrized over an arbitrary state ('a), and the

0 commit comments

Comments
 (0)