From ef1f35ba9dda5f63eb6654387994f4abb3459100 Mon Sep 17 00:00:00 2001 From: Domenico Cerasuolo Date: Sun, 3 Dec 2023 11:56:25 +0100 Subject: [PATCH] Fix official uris-ids docs outdated links --- core/src/spotify_id.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/src/spotify_id.rs b/core/src/spotify_id.rs index 2918f568..93b0b8f6 100644 --- a/core/src/spotify_id.rs +++ b/core/src/spotify_id.rs @@ -100,7 +100,7 @@ impl SpotifyId { /// /// `src` is expected to be 32 bytes long and encoded using valid characters. /// - /// [Spotify ID]: https://developer.spotify.com/documentation/web-api/#spotify-uris-and-ids + /// [Spotify ID]: https://developer.spotify.com/documentation/web-api/concepts/spotify-uris-ids pub fn from_base16(src: &str) -> SpotifyIdResult { let mut dst: u128 = 0; @@ -125,7 +125,7 @@ impl SpotifyId { /// /// `src` is expected to be 22 bytes long and encoded using valid characters. /// - /// [Spotify ID]: https://developer.spotify.com/documentation/web-api/#spotify-uris-and-ids + /// [Spotify ID]: https://developer.spotify.com/documentation/web-api/concepts/spotify-uris-ids pub fn from_base62(src: &str) -> SpotifyIdResult { let mut dst: u128 = 0; @@ -168,7 +168,7 @@ impl SpotifyId { /// Note that this should not be used for playlists, which have the form of /// `spotify:playlist:{id}`. /// - /// [Spotify URI]: https://developer.spotify.com/documentation/web-api/#spotify-uris-and-ids + /// [Spotify URI]: https://developer.spotify.com/documentation/web-api/concepts/spotify-uris-ids pub fn from_uri(src: &str) -> SpotifyIdResult { // Basic: `spotify:{type}:{id}` // Named: `spotify:user:{user}:{type}:{id}` @@ -223,7 +223,7 @@ impl SpotifyId { /// Returns the `SpotifyId` as a [canonically] base62 encoded, `SpotifyId::SIZE_BASE62` (22) /// character long `String`. /// - /// [canonically]: https://developer.spotify.com/documentation/web-api/#spotify-uris-and-ids + /// [canonically]: https://developer.spotify.com/documentation/web-api/concepts/spotify-uris-ids #[allow(clippy::wrong_self_convention)] pub fn to_base62(&self) -> Result { let mut dst = [0u8; 22]; @@ -280,7 +280,7 @@ impl SpotifyId { /// If the `SpotifyId` has an associated type unrecognized by the library, `{type}` will /// be encoded as `unknown`. /// - /// [Spotify URI]: https://developer.spotify.com/documentation/web-api/#spotify-uris-and-ids + /// [Spotify URI]: https://developer.spotify.com/documentation/web-api/concepts/spotify-uris-ids #[allow(clippy::wrong_self_convention)] pub fn to_uri(&self) -> Result { // 8 chars for the "spotify:" prefix + 1 colon + 22 chars base62 encoded ID = 31