From a56e4d366cc31f0a475de07c6b348dda321dd751 Mon Sep 17 00:00:00 2001 From: Andrey Kutejko Date: Sat, 16 Nov 2024 00:57:59 +0100 Subject: [PATCH] Remove ambiguous statements from documentation --- CHANGELOG.md | 2 ++ README.md | 2 -- src/lib.rs | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4470b5..6473088 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +- Remove ambiguous statements about escaping from documentation. [`#84`](https://github.com/rust-syndication/rss/pull/84) + ## 0.12.4 - 2024-08-28 - Update `quick-xml` to `0.32`. [`#82`](https://github.com/rust-syndication/atom/pull/82) diff --git a/README.md b/README.md index 29b91ff..aafbf35 100644 --- a/README.md +++ b/README.md @@ -52,8 +52,6 @@ let feed = string.parse::().unwrap(); A feed can be written to any object that implements the `Write` trait or converted to an XML string using the `ToString` trait. -**Note**: Writing a feed does not perform any escaping of XML entities. - ### Example ```rust diff --git a/src/lib.rs b/src/lib.rs index 313b9ad..628a7f6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,8 +25,6 @@ //! A feed can be written to any object that implements the `Write` trait or converted to an XML //! string using the `ToString` trait. //! -//! **Note**: Writing a feed does not perform any escaping of XML entities. -//! //! ## Example //! //! ```no_run