Skip to content

Commit

Permalink
docs(ApeTag): fix references to ItemValue, Picture, and PictureType
Browse files Browse the repository at this point in the history
  • Loading branch information
Lepidopteran committed Jan 21, 2025
1 parent 038912c commit 5f3b057
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lofty/src/ape/tag/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ macro_rules! impl_accessor {
/// ## Item storage
///
/// `APE` isn't a very strict format. An [`ApeItem`] only restricted by its name, meaning it can use
/// a normal [`ItemValue`](crate::ItemValue) unlike other formats.
/// a normal [`ItemValue`](crate::tag::ItemValue) unlike other formats.
///
/// Pictures are stored as [`ItemValue::Binary`](crate::ItemValue::Binary), and can be converted with
/// [`Picture::from_ape_bytes`](crate::Picture::from_ape_bytes). For the appropriate item keys, see
/// Pictures are stored as [`ItemValue::Binary`](crate::tag::ItemValue::Binary), and can be converted with
/// [`Picture::from_ape_bytes`](crate::picture::Picture::from_ape_bytes). For the appropriate item keys, see
/// [`APE_PICTURE_TYPES`](crate::ape::APE_PICTURE_TYPES).
///
/// ## Conversions
Expand All @@ -70,7 +70,7 @@ macro_rules! impl_accessor {
///
/// ### From `Tag`
///
/// When converting pictures, any of type [`PictureType::Undefined`](crate::PictureType::Undefined) will be discarded.
/// When converting pictures, any of type [`PictureType::Undefined`](crate::picture::PictureType::Undefined) will be discarded.
/// For items, see [`ApeItem::new`].
#[derive(Default, Debug, PartialEq, Eq, Clone)]
#[tag(
Expand Down

0 comments on commit 5f3b057

Please sign in to comment.