diff --git a/README.md b/README.md index b5f9d3b26..81dc02a8a 100644 --- a/README.md +++ b/README.md @@ -70,8 +70,6 @@ async fn example_feed() -> Result> { A channel can be written to any object that implements the `Write` trait or converted to an XML string using the `ToString` trait. -**Note**: Writing a channel does not perform any escaping of XML entities. - ```rust use rss::Channel; diff --git a/src/lib.rs b/src/lib.rs index 0f531f948..75196c5aa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -48,8 +48,6 @@ //! A channel can be written to any object that implements the `Write` trait or converted to an //! XML string using the `ToString` trait. //! -//! **Note**: Writing a channel does not perform any escaping of XML entities. -//! //! ```rust //! use rss::Channel; //!