\ No newline at end of file
diff --git a/quick_xml/encoding/enum.EncodingError.html b/quick_xml/encoding/enum.EncodingError.html
index 42fb4aaec..27a26a701 100644
--- a/quick_xml/encoding/enum.EncodingError.html
+++ b/quick_xml/encoding/enum.EncodingError.html
@@ -1,4 +1,4 @@
-EncodingError in quick_xml::encoding - Rust
If encoding is detected, Some is returned with an encoding and size of BOM
in bytes, if detection was performed using BOM, or zero, if detection was
diff --git a/quick_xml/encoding/index.html b/quick_xml/encoding/index.html
index fff0b71d5..bfc1ab56b 100644
--- a/quick_xml/encoding/index.html
+++ b/quick_xml/encoding/index.html
@@ -1,3 +1,3 @@
-
\ No newline at end of file
diff --git a/quick_xml/encoding/struct.Decoder.html b/quick_xml/encoding/struct.Decoder.html
index 4185bac9c..5e470bbdc 100644
--- a/quick_xml/encoding/struct.Decoder.html
+++ b/quick_xml/encoding/struct.Decoder.html
@@ -1,4 +1,4 @@
-Decoder in quick_xml::encoding - Rust
If feature encoding is enabled, this encoding taken from the "encoding"
XML declaration or assumes UTF-8, if XML has no declaration, encoding
key is not defined or contains unknown encoding.
diff --git a/quick_xml/errors/enum.Error.html b/quick_xml/errors/enum.Error.html
index 7d6bf328e..7fc7aa597 100644
--- a/quick_xml/errors/enum.Error.html
+++ b/quick_xml/errors/enum.Error.html
@@ -1,4 +1,4 @@
-Error in quick_xml::errors - Rust
An error returned if parsed document does not correspond to the XML grammar,
for example, a tag opened by < not closed with >. This error does not
diff --git a/quick_xml/errors/type.Result.html b/quick_xml/errors/type.Result.html
index 151da3289..0a87660e7 100644
--- a/quick_xml/errors/type.Result.html
+++ b/quick_xml/errors/type.Result.html
@@ -1,4 +1,4 @@
-Result in quick_xml::errors - Rust
XML standard requires that only < and & was escaped in text content or
attribute value. All other characters not necessary to be escaped, although
for compatibility with SGML they also should be escaped. Practically, escaping
only those characters is enough.
diff --git a/quick_xml/escape/fn.partial_escape.html b/quick_xml/escape/fn.partial_escape.html
index f9b907565..8ec373933 100644
--- a/quick_xml/escape/fn.partial_escape.html
+++ b/quick_xml/escape/fn.partial_escape.html
@@ -1,4 +1,4 @@
-partial_escape in quick_xml::escape - Rust
Escapes an &str and replaces xml special characters (<, >, &)
with their corresponding xml escaped value.
Should only be used for escaping text content. In XML text content, it is allowed
(though not recommended) to leave the quote special characters " and ' unescaped.
diff --git a/quick_xml/escape/fn.resolve_predefined_entity.html b/quick_xml/escape/fn.resolve_predefined_entity.html
index 5514e4e4f..c956770da 100644
--- a/quick_xml/escape/fn.resolve_predefined_entity.html
+++ b/quick_xml/escape/fn.resolve_predefined_entity.html
@@ -1,4 +1,4 @@
-resolve_predefined_entity in quick_xml::escape - Rust
\ No newline at end of file
diff --git a/quick_xml/escape/fn.unescape_with.html b/quick_xml/escape/fn.unescape_with.html
index c869feba6..020c7bce2 100644
--- a/quick_xml/escape/fn.unescape_with.html
+++ b/quick_xml/escape/fn.unescape_with.html
@@ -1,4 +1,4 @@
-unescape_with in quick_xml::escape - Rust
XML standard requires that only < and & was escaped in text content or
attribute value. All other characters not necessary to be escaped, although
diff --git a/quick_xml/events/attributes/enum.Attr.html b/quick_xml/events/attributes/enum.Attr.html
index 373ac6f25..92c3be223 100644
--- a/quick_xml/events/attributes/enum.Attr.html
+++ b/quick_xml/events/attributes/enum.Attr.html
@@ -1,4 +1,4 @@
-Attr in quick_xml::events::attributes - Rust
Errors that can be raised during parsing attributes.
\ No newline at end of file
diff --git a/quick_xml/events/attributes/struct.Attribute.html b/quick_xml/events/attributes/struct.Attribute.html
index e655ab2bb..ac1363762 100644
--- a/quick_xml/events/attributes/struct.Attribute.html
+++ b/quick_xml/events/attributes/struct.Attribute.html
@@ -1,4 +1,4 @@
-Attribute in quick_xml::events::attributes - Rust
Yields Result<Attribute>. An Err will be yielded if an attribute is malformed or duplicated.
The duplicate check can be turned off by calling with_checks(false).