From aedc7a692315c9f173d81bb90ce9be666c009149 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Wed, 17 May 2023 23:56:38 +0900 Subject: [PATCH] Fix a comment on the `Compression` struct Signed-off-by: Yuki Okushi --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 6789c5b7..b84865e9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -154,7 +154,7 @@ fn _assert_send_sync() { } /// When compressing data, the compression level can be specified by a value in -/// this enum. +/// this struct. #[derive(Copy, Clone, PartialEq, Eq, Debug)] pub struct Compression(u32);