From 3be50fd90f94771f6894d7c6cd74772e61e2fe75 Mon Sep 17 00:00:00 2001 From: johannesd3 Date: Thu, 27 May 2021 17:20:49 +0200 Subject: [PATCH] Corrected documentation --- core/src/spotify_id.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/spotify_id.rs b/core/src/spotify_id.rs index e79a247c..e6e2bae0 100644 --- a/core/src/spotify_id.rs +++ b/core/src/spotify_id.rs @@ -134,7 +134,7 @@ impl SpotifyId { Ok(id) } - /// Returns the `SpotifyId` as a base16 (hex) encoded, `SpotifyId::SIZE_BASE62` (22) + /// Returns the `SpotifyId` as a base16 (hex) encoded, `SpotifyId::SIZE_BASE16` (32) /// character long `String`. pub fn to_base16(&self) -> String { to_base16(&self.to_raw(), &mut [0u8; SpotifyId::SIZE_BASE16])