Consistency
All checks were successful
Cargo CI / Build and Test (pull_request) Successful in 1m41s
Cargo CI / Lint (pull_request) Successful in 1m13s

This commit is contained in:
Wojciech Kozlowski 2024-03-08 23:25:45 +01:00
parent 1b4e82c17e
commit 44a4b4cdc3

View File

@ -53,8 +53,8 @@ impl AlbumDate {
} }
impl From<u32> for AlbumDate { impl From<u32> for AlbumDate {
fn from(year: u32) -> Self { fn from(value: u32) -> Self {
AlbumDate::new(year, AlbumMonth::default(), 0) AlbumDate::new(value, AlbumMonth::default(), 0)
} }
} }