Skip to content

Commit

Permalink
Edit user setting missing message
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmostellar committed May 5, 2024
1 parent a28cdbb commit 4788ff3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/api_usage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ pub async fn print_weather_information() -> Result<()> {
}
_ => {
return Err(anyhow!(
"Failed to read the setting! Please run 'set-location' command to configure settings."
"Failed to read user setting! Please run 'set-location' command to configure settings."
))
}
};
Expand Down Expand Up @@ -147,6 +147,7 @@ pub async fn print_weather_information() -> Result<()> {
};

let output_messages = [
String::new(),
format!("{} ({})", selected_city.name, selected_city.country),
format!(
"{temp}° / {main} ({description})",
Expand Down

0 comments on commit 4788ff3

Please sign in to comment.