This commit is contained in:
Serial 2022-02-19 09:41:36 -05:00
parent e66ab4587d
commit 55cc5e5264
No known key found for this signature in database
GPG key ID: DA95198DC17C4568
2 changed files with 4 additions and 5 deletions

View file

@ -79,7 +79,7 @@ pub trait TagExt: Accessor + Into<Tag> + Sized {
/// # Example
///
/// ```rust
/// use lofty::{Tag, TagExt, Accessor};
/// use lofty::{Accessor, Tag, TagExt};
/// # let tag_type = lofty::TagType::Id3v2;
///
/// let mut tag = Tag::new(tag_type);

View file

@ -53,7 +53,7 @@ macro_rules! impl_accessor {
/// Accessing common items
///
/// ```rust
/// use lofty::{Tag, TagType, Accessor};
/// use lofty::{Accessor, Tag, TagType};
///
/// let tag = Tag::new(TagType::Id3v2);
///
@ -68,8 +68,7 @@ macro_rules! impl_accessor {
/// Getting an item of a known type
///
/// ```rust
/// use lofty::{Tag, TagType};
/// use lofty::ItemKey;
/// use lofty::{ItemKey, Tag, TagType};
///
/// let tag = Tag::new(TagType::Id3v2);
///
@ -83,8 +82,8 @@ macro_rules! impl_accessor {
/// Converting between formats
///
/// ```rust
/// use lofty::{Tag, TagType};
/// use lofty::id3::v2::Id3v2Tag;
/// use lofty::{Tag, TagType};
///
/// // Converting between formats is as simple as an `into` call.
/// // However, such conversions can potentially be *very* lossy.