From 1a5c38dcb8bdd5a7b398cb9e3c7f0b905649d63f Mon Sep 17 00:00:00 2001 From: Andrey Kutejko Date: Sat, 16 Nov 2024 00:45:16 +0100 Subject: [PATCH] Remove ambiguous statements from documentation --- README.md | 2 -- src/lib.rs | 2 -- 2 files changed, 4 deletions(-) diff --git a/README.md b/README.md index b5f9d3b26c..81dc02a8af 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 0f531f9480..75196c5aa8 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; //!