From 310e3db1d5d74b36a22bffaa4d587cb372dcf309 Mon Sep 17 00:00:00 2001 From: Frank Wang <1454884738@qq.com> Date: Fri, 6 Dec 2024 14:44:53 +0000 Subject: [PATCH] chore: doc fix --- core/src/types/metadata.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/types/metadata.rs b/core/src/types/metadata.rs index 0cba7a27f0bb..c1d4155e1971 100644 --- a/core/src/types/metadata.rs +++ b/core/src/types/metadata.rs @@ -205,15 +205,11 @@ impl Metadata { } /// Content Encoding of this entry. - /// - /// Content Encoding is defined by [RFC 9110](https://httpwg.org/specs/rfc9110.html#field.content-encoding). pub fn content_encoding(&self) -> Option<&str> { self.content_encoding.as_deref() } /// Set Content Encoding of this entry. - /// - /// Content Encoding is defined by [RFC 9110](https://httpwg.org/specs/rfc9110.html#field.content-encoding). pub fn set_content_encoding(&mut self, v: &str) -> &mut Self { self.content_encoding = Some(v.to_string()); self