From 1d0a7c196409dffc92d4d9b6ed1ab2b8a550db7b Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Thu, 3 Jun 2021 18:20:01 +0100 Subject: [PATCH] Update decoder.rs --- actix-http/src/encoding/decoder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-http/src/encoding/decoder.rs b/actix-http/src/encoding/decoder.rs index 996adf561..066075edd 100644 --- a/actix-http/src/encoding/decoder.rs +++ b/actix-http/src/encoding/decoder.rs @@ -49,7 +49,7 @@ where ContentEncoding::Zstd => Some(ContentDecoder::Zstd(Box::new( ZstdDecoder::new(Writer::new()) .expect( - "Failed to create zstd decoder. This is a bug and should normally happen. \ + "Failed to create zstd decoder. This is a bug. \ Please report it to the actix-web repository." ), ))),