Skip to content

Commit

Permalink
Typos in doc strings
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierleroy committed Mar 31, 2024
1 parent 71dda91 commit 29f271f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PRNG.mli
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module type STATE = sig
as a character string. The length and randomness of the seed
limit the total entropy of the generator. For example, 64
bits of entropy can be obtained by giving a seed consisting of
8 cryptographically-strong random characters (as obtained
8 cryptographically-strong random characters, as obtained
e.g. by reading [/dev/random]. *)
val make: int array -> t
(** Initialize a generator from the given seed. The seed is given
Expand Down Expand Up @@ -155,7 +155,7 @@ module type STATE = sig
It is good practice to reseed a PRNG after a certain quantity
of pseudo-random data has been produced from it: typically
2{^32} numbers for the {!PRNG.Splitmix} generator and
2{^64} bytes for then {!PRNG.Chacha} generator. *)
2{^64} bytes for the {!PRNG.Chacha} generator. *)
val remake: t -> int array -> unit
(** [remake g a] reinitializes the generator [g] with fresh seed data
from array [a]. This is like [reseed] except that the seed is
Expand Down

0 comments on commit 29f271f

Please sign in to comment.