Skip to content

Commit 709dd35

Browse files
committed
docs(toml): Mirror serde_json in inlining in root
1 parent 226639c commit 709dd35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/toml/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,13 @@ mod edit;
161161
mod fmt;
162162
mod table;
163163

164-
#[doc(no_inline)]
165164
#[cfg(feature = "parse")]
165+
#[doc(inline)]
166166
pub use crate::de::{from_str, Deserializer};
167-
#[doc(no_inline)]
168167
#[cfg(feature = "display")]
168+
#[doc(inline)]
169169
pub use crate::ser::{to_string, to_string_pretty, Serializer};
170-
#[doc(no_inline)]
170+
#[doc(inline)]
171171
pub use crate::value::Value;
172172

173173
pub use serde_spanned::Spanned;

0 commit comments

Comments
 (0)