Skip to content

Commit

Permalink
change access scope for two top-level modules from private to internal
Browse files Browse the repository at this point in the history
  • Loading branch information
TysonMN authored and adam-becker committed Sep 11, 2021
1 parent f7c953a commit 1d4769a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Hedgehog/GenTuple.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#if FABLE_COMPILER
module Hedgehog.GenTuple
#else
module private Hedgehog.GenTuple
module internal Hedgehog.GenTuple
#endif

let mapFst (f : 'a -> 'c) (gen : Gen<'a * 'b>) : Gen<'c * 'b> =
Expand Down
2 changes: 1 addition & 1 deletion src/Hedgehog/Tuple.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#if FABLE_COMPILER
module Hedgehog.Tuple
#else
module private Hedgehog.Tuple
module internal Hedgehog.Tuple
#endif

let mapFst (f : 'a -> 'c) (x : 'a, y : 'b) : 'c * 'b =
Expand Down

0 comments on commit 1d4769a

Please sign in to comment.