From 4c9a271842bf77da5bcb7323275b3eac8695f707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Sat, 25 Jan 2025 12:23:57 +0100 Subject: [PATCH] xso: remove incorrect/obsolete comment --- xso/src/text.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/xso/src/text.rs b/xso/src/text.rs index cecbf380067730971b708d3328bb46cf184dce27..cf43dd83a8d149ae738f25c20352a6db79175412 100644 --- a/xso/src/text.rs +++ b/xso/src/text.rs @@ -293,10 +293,6 @@ impl TextFilter for StripWhitespace { /// Text codec transforming text to binary using standard `base64`. /// -/// The `Filter` type argument can be used to employ additional preprocessing -/// of incoming text data. Most interestingly, passing [`StripWhitespace`] -/// will make the implementation ignore any whitespace within the text. -/// /// `Base64` uses the [`base64::engine::general_purpose::STANDARD`] engine. /// [`TextCodec`] is also automatically implemented for any value which /// implements [`base64::engine::Engine`], allowing you to choose different