From 65376059b409a3fff39fa0fad5e10d58e35ec29b Mon Sep 17 00:00:00 2001 From: Blaine <44733840+Lepidopteran@users.noreply.github.com> Date: Sun, 19 Jan 2025 00:19:45 -0500 Subject: [PATCH] Docs: update url in tag_reader example to correct tag key enum --- examples/tag_reader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tag_reader.rs b/examples/tag_reader.rs index f31195255..12349a018 100644 --- a/examples/tag_reader.rs +++ b/examples/tag_reader.rs @@ -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")