Fix spelling errors

Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
This commit is contained in:
Elyes HAOUAS
2021-10-02 18:13:17 +02:00
parent 7af6e8413c
commit f18eb71ad7
5 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,7 @@ using waybar::modules::waybar_time;
waybar::modules::Clock::Clock(const std::string& id, const Json::Value& config)
: ALabel(config, "clock", id, "{:%H:%M}", 60, false, false, true), fixed_time_zone_(false) {
if (config_["timezone"].isString()) {
spdlog::warn("As using a timezone, some format args may be missing as the date library havn't got a release since 2018.");
spdlog::warn("As using a timezone, some format args may be missing as the date library haven't got a release since 2018.");
time_zone_ = date::locate_zone(config_["timezone"].asString());
fixed_time_zone_ = true;
}