From e66bf8b2e9e5998d4cc4a12043cb4b4bd2f6f4eb Mon Sep 17 00:00:00 2001 From: Candifloss Date: Thu, 9 Oct 2025 16:31:27 +0530 Subject: [PATCH] Fix typo - Replace ambiguous symbol with the correct "-" --- owm_api25/src/current.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owm_api25/src/current.rs b/owm_api25/src/current.rs index 278ed8d..88ca643 100644 --- a/owm_api25/src/current.rs +++ b/owm_api25/src/current.rs @@ -539,7 +539,7 @@ impl WeatherResponse { self.wind.as_ref().and_then(|w| w.deg) } - /// Returns the cloudiness percentage (0–100), if available + /// Returns the cloudiness percentage (0-100), if available #[must_use] pub fn cloudiness(&self) -> Option { self.clouds.as_ref().and_then(|c| c.all)