Missing references

Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
Serial 2021-07-09 14:32:12 -04:00
parent 244cff1fee
commit 1fe26739a1

View file

@ -47,7 +47,7 @@ impl<'a> Album<'a> {
self.artist = Some(artist_str);
}
/// Clears the `artists` field
pub fn remove_artist(mut self) {
pub fn remove_artist(&mut self) {
self.artist = None
}
/// Sets the album's front cover
@ -59,7 +59,7 @@ impl<'a> Album<'a> {
self.covers.1 = Some(cover)
}
/// Clears the `covers` field
pub fn remove_covers(mut self) {
pub fn remove_covers(&mut self) {
self.covers = (None, None)
}
}