From f3457f450c913dc9910a2638f7381661571ca383 Mon Sep 17 00:00:00 2001 From: Serial <69764315+Serial-ATA@users.noreply.github.com> Date: Thu, 30 Nov 2023 13:20:02 -0500 Subject: [PATCH] Picture: Fix docs referring to `MimeType::None` Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com> --- src/picture.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/picture.rs b/src/picture.rs index 65e6d9c8..077fda24 100644 --- a/src/picture.rs +++ b/src/picture.rs @@ -70,9 +70,6 @@ impl MimeType { #[allow(clippy::should_implement_trait)] /// Get a `MimeType` from a string /// - /// Empty strings will map to `MimeType::None`, while any unrecognized MIME types will - /// map to `MimeType::Unknown`. - /// /// # Examples /// /// ```rust @@ -94,8 +91,6 @@ impl MimeType { /// Get a &str from a `MimeType` /// - /// NOTE: `MimeType::None` will return an empty string. - /// /// # Examples /// /// ```rust