Skip to content

Commit

Permalink
Docs: update url in tag_reader example to correct tag key enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Lepidopteran authored Jan 19, 2025
1 parent 4d29f2f commit 6537605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/tag_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fn main() {
println!("Album: {}", tag.album().as_deref().unwrap_or("None"));
println!("Genre: {}", tag.genre().as_deref().unwrap_or("None"));

// import keys from https://docs.rs/lofty/latest/lofty/enum.ItemKey.html
// import keys from https://docs.rs/lofty/latest/lofty/tag/enum.ItemKey.html
println!(
"Album Artist: {}",
tag.get_string(&ItemKey::AlbumArtist).unwrap_or("None")
Expand Down

0 comments on commit 6537605

Please sign in to comment.