couple little docs fixes

Orual 5a9085c9 7998de31

Changed files
+5 -8
crates
jacquard
src
jacquard-common
src
+5 -7
crates/jacquard-common/src/lib.rs
··· 1 1 //! Common types for the jacquard implementation of atproto 2 2 3 3 #![warn(missing_docs)] 4 + pub use cowstr::CowStr; 5 + pub use into_static::IntoStatic; 6 + pub use smol_str; 7 + pub use url; 4 8 5 9 /// A copy-on-write immutable string type that uses [`SmolStr`] for 6 10 /// the "owned" variant. 7 11 #[macro_use] 8 12 pub mod cowstr; 9 13 #[macro_use] 10 - /// trait for taking ownership of most borrowed types in jacquard. 14 + /// Trait for taking ownership of most borrowed types in jacquard. 11 15 pub mod into_static; 12 - /// Helper macros for common patterns 13 16 pub mod macros; 14 17 /// Baseline fundamental AT Protocol data types. 15 18 pub mod types; 16 - 17 - pub use cowstr::CowStr; 18 - pub use into_static::IntoStatic; 19 - pub use smol_str; 20 - pub use url;
-1
crates/jacquard/src/lib.rs
··· 95 95 #[cfg(feature = "api")] 96 96 /// If enabled, re-export the generated api crate 97 97 pub use jacquard_api as api; 98 - /// Re-export common types 99 98 pub use jacquard_common::*; 100 99 101 100 #[cfg(feature = "derive")]