From ebe53b8eabb3658240dc60eedf847d0dbb730a8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Sun, 27 Apr 2025 12:56:08 +0200 Subject: [PATCH] xso: remove `#[doc(inline)]` from TextCodec Using `#[doc(inline)]` there makes it appear in two places in the documentation, which may be confusing (as it's not fully obvious that both places are in fact the same trait). --- xso/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/xso/src/lib.rs b/xso/src/lib.rs index 3cec6221488c653fc364d9f266ec6890dcac9505..8880f79b921a512bb22533cf7d196aac78794cc7 100644 --- a/xso/src/lib.rs +++ b/xso/src/lib.rs @@ -104,7 +104,6 @@ use alloc::{ vec::Vec, }; -#[doc(inline)] pub use text::TextCodec; #[doc(inline)]