mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-12 13:42:34 +00:00
Missing references
Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
parent
244cff1fee
commit
1fe26739a1
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue