Browse Source

Fix formatting

Sasha Hilton 7 years ago
parent
commit
197d80edbf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/src/spotify_id.rs

+ 1 - 1
core/src/spotify_id.rs

@@ -50,7 +50,7 @@ impl SpotifyId {
 
     pub fn from_raw(data: &[u8]) -> Result<SpotifyId, SpotifyIdError> {
         if data.len() != 16 {
-            return Err(SpotifyIdError)
+            return Err(SpotifyIdError);
         };
 
         let high = BigEndian::read_u64(&data[0..8]);