Fix typo
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
notplants 2022-05-11 10:34:53 +02:00
parent f4c1bc1169
commit 610d60d989
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ pub fn save_config_value(key: &str, value: &str) -> Result<HashMap<String, Strin
// insert new key/value
peach_config.insert(key.to_string(), value.to_string());
// save hte modified hashmap to disc
// save the modified hashmap to disc
save_peach_config_to_disc(peach_config)
}