diff --git a/src/client/response/meta/mime.rs b/src/client/response/meta/mime.rs
index e68b014..6dabf42 100644
--- a/src/client/response/meta/mime.rs
+++ b/src/client/response/meta/mime.rs
@@ -1,6 +1,6 @@
//! MIME type parser for different data types:
//!
-//! * UTF-8 buffer with entire response or just with meta slice (that include **header**)
+//! * UTF-8 buffer with entire response or just with meta slice (that include entire **header**)
//! * String (that include **header**)
//! * [Uri](https://docs.gtk.org/glib/struct.Uri.html) (that include **extension**)
//! * `std::Path` (that include **extension**)
@@ -30,10 +30,12 @@ pub enum Mime {
} // @TODO
impl Mime {
- /// Create new `Self` from UTF-8 buffer
+ /// Create new `Self` from UTF-8 buffer (that includes **header**)
///
- /// * result could be `None` for some [status codes](https://geminiprotocol.net/docs/protocol-specification.gmi#status-codes) that does not expect MIME type in header
- /// * includes `Self::from_string` parser, it means that given buffer should contain some **header** (not filepath or any other type of strings)
+ /// * result could be `None` for some [status codes](https://geminiprotocol.net/docs/protocol-specification.gmi#status-codes)
+ /// that does not expect MIME type in header
+ /// * includes `Self::from_string` parser,
+ /// it means that given buffer should contain some **header** (not filepath or any other type of strings)
pub fn from_utf8(buffer: &[u8]) -> Result