From 1d4769afd99ad6c23bb0ecf068f3b33f45d28d30 Mon Sep 17 00:00:00 2001 From: Tyson Williams Date: Fri, 10 Sep 2021 22:55:05 -0500 Subject: [PATCH] change access scope for two top-level modules from private to internal --- src/Hedgehog/GenTuple.fs | 2 +- src/Hedgehog/Tuple.fs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Hedgehog/GenTuple.fs b/src/Hedgehog/GenTuple.fs index 1d66dea9..5215c45b 100644 --- a/src/Hedgehog/GenTuple.fs +++ b/src/Hedgehog/GenTuple.fs @@ -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> = diff --git a/src/Hedgehog/Tuple.fs b/src/Hedgehog/Tuple.fs index 22316b55..3492640e 100644 --- a/src/Hedgehog/Tuple.fs +++ b/src/Hedgehog/Tuple.fs @@ -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 =