From f1bf72f22fa17e9b090353f564469b20fdbd36a9 Mon Sep 17 00:00:00 2001 From: Jonathan Strong Date: Wed, 6 Sep 2023 13:53:23 -0400 Subject: [PATCH] tweak silly hex encodings --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 7572664..497f649 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -71,8 +71,8 @@ pub const fn crc32(buf: &[u8]) -> u32 { /// on what kind of data the bytes represent: /// /// ``` -/// const THING_ONE_SEED: u32 = 0xdeadbeef_u32; -/// const THING_TWO_SEED: u32 = 0xbaaaaaad_u32; +/// const THING_ONE_SEED: u32 = 0xbaaaaaad_u32; +/// const THING_TWO_SEED: u32 = 0x2bad2bad_u32; /// /// let thing_one_bytes = "bump! thump!".as_bytes(); /// let thing_two_bytes = "thump! bump!".as_bytes();