From 6df4e89452d8a7959d374cca04d25388dc121ee8 Mon Sep 17 00:00:00 2001 From: Maximilian Tagher Date: Wed, 26 Aug 2020 19:42:19 -0400 Subject: [PATCH] Fix typo of uniformByteStringM --- src/System/Random.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System/Random.hs b/src/System/Random.hs index 064abe289..fd98f505f 100644 --- a/src/System/Random.hs +++ b/src/System/Random.hs @@ -174,7 +174,7 @@ uniformR :: (RandomGen g, UniformRange a) => (a, a) -> g -> (a, g) uniformR r g = runStateGen g (uniformRM r) -- | Generates a 'ByteString' of the specified size using a pure pseudo-random --- number generator. See 'uniformByteString' for the monadic version. +-- number generator. See 'uniformByteStringM' for the monadic version. -- -- ====__Examples__ --