Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions components/datetime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ pub mod options;
#[doc(hidden)]
pub mod pattern;
pub mod provider;
#[doc(hidden)]
pub mod skeleton;
// TODO(#622) make the time_zone module public once TimeZoneFormat is public.
pub(crate) mod time_zone;
Expand Down
4 changes: 2 additions & 2 deletions components/datetime/src/provider/gregory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,11 @@ pub mod patterns {
}
}

/// This struct is a public wrapper around the internal [`Skeleton`] struct. This allows
/// This struct is a public wrapper around the internal `Skeleton` struct. This allows
/// access to the serialization and deserialization capabilities, without exposing the
/// internals of the skeleton machinery.
///
/// The [`Skeleton`] is an "exotic type" in the serialization process, and handles its own
/// The `Skeleton` is an "exotic type" in the serialization process, and handles its own
/// custom serialization practices.
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone)]
#[cfg_attr(
Expand Down