From 6da056128de84373270866016b8589b1a0186c82 Mon Sep 17 00:00:00 2001 From: Oskar Eichler Date: Sat, 29 Aug 2026 22:47:17 +0200 Subject: [PATCH] Fix CRC32 documentation example --- ext/digest/crc32/crc32init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/digest/crc32/crc32init.c b/ext/digest/crc32/crc32init.c index 0a1b631..3335039 100644 --- a/ext/digest/crc32/crc32init.c +++ b/ext/digest/crc32/crc32init.c @@ -25,7 +25,7 @@ static const rb_digest_metadata_t crc32 = { * require 'digest' * * # Compute a complete digest - * Digest::CRC32.hexdigest 'abc' #=> "8eb208f7..." + * Digest::CRC32.hexdigest 'abc' #=> "352441c2" * * # Compute digest by chunks * crc32 = Digest::CRC32.new # =>#