Be pedantic with constant number notation 😉

This commit is contained in:
Paul van Tilburg 2022-02-13 21:31:12 +01:00
parent 859288a329
commit c231447ce9
Signed by untrusted user: paul
GPG Key ID: C6DE073EDA9EEC4D
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ const UVI_BASE_URL: &str = "https://image.buienradar.nl/2.0/image/sprite/Weather
/// The interval for retrieving UV index maps.
///
/// The endpoint provides a map for every day, 5 in total.
const UVI_INTERVAL: Duration = Duration::from_secs(24 * 3600);
const UVI_INTERVAL: Duration = Duration::from_secs(24 * 3_600);
/// The `MapsRefresh` trait is used to reduce the time a lock needs to be held when updating maps.
///