From 85d5d34a653497ac038b04736bc2f65bab621e48 Mon Sep 17 00:00:00 2001 From: Admar Schoonen Date: Sat, 12 Feb 2022 16:18:30 +0100 Subject: [PATCH] Clarify that PAQI is the combination of pollen and air quality index --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 427a2cf..ecf27ac 100644 --- a/src/main.rs +++ b/src/main.rs @@ -45,7 +45,7 @@ struct Forecast { #[serde(rename = "O3", skip_serializing_if = "Option::is_none")] o3: Option, - /// The FIXME air quality index (when asked for). + /// The combination of pollen + air quality index (when asked for). #[serde(rename = "PAQI", skip_serializing_if = "Option::is_none")] paqi: Option, @@ -94,7 +94,7 @@ enum Metric { NO2, /// The O₃ concentration. O3, - /// The FIXME air quality index. + /// The combination of pollen + air quality index. PAQI, /// The particulate matter in the air. PM10,