Skip to content

Commit

Permalink
Merge pull request #539 from Takashiidobe/patch-1
Browse files Browse the repository at this point in the history
Fix typo in v4.rs
  • Loading branch information
KodrAus committed Oct 31, 2021
2 parents 05ac705 + 147e3ad commit 682099a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v4.rs
Expand Up @@ -28,7 +28,7 @@ impl Uuid {
let mut bytes = [0u8; 16];
getrandom::getrandom(&mut bytes).unwrap_or_else(|err| {
// NB: getrandom::Error has no source; this is adequate display
panic!("could not retreive random bytes for uuid: {}", err)
panic!("could not retrieve random bytes for uuid: {}", err)
});

crate::Builder::from_bytes(bytes)
Expand Down

0 comments on commit 682099a

Please sign in to comment.