Skip to content

Commit

Permalink
Change a confusing word in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-hughes-tiledb authored and KiterLuc committed Feb 15, 2024
1 parent cae5066 commit c4277a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tiledb/common/random/prng.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ return_size_type random_seed() {
static constexpr size_t ret_size = sizeof(return_size_type);
std::random_device rng{};
/*
* We will need 64 bits to fully seed the PRNG (`ret_size`). We support cases
* where the result size of the RNG is 64 or 32 bits (`rng_size`).
* We will need 64 bits to adequately seed the PRNG (`ret_size`). We support
* cases where the result size of the RNG is 64 or 32 bits (`rng_size`).
*/
if constexpr (ret_size == rng_size) {
return rng();
Expand Down

0 comments on commit c4277a9

Please sign in to comment.