Skip to content

Commit

Permalink
fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
YouKnow-sys committed Feb 10, 2024
1 parent af7046a commit 2e4bbc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dloc-cli/src/commands/languages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub fn print_languages(game: Game, mut logger: CliLogger) -> anyhow::Result<()>
}
Game::Hzd => {
let languages = hzd::Language::ALL_VARIANTS.into_iter().fold(
String::from("HZD supported languages:\n"),
String::from("Horizon Zero Dawn supported languages:\n"),
|mut s, v| {
let _ = writeln!(s, " - {v}");
s
Expand All @@ -25,7 +25,7 @@ pub fn print_languages(game: Game, mut logger: CliLogger) -> anyhow::Result<()>
}
Game::Ds => {
let languages = ds::Language::ALL_VARIANTS.into_iter().fold(
String::from("HZD supported languages:\n"),
String::from("Death Stranding supported languages:\n"),
|mut s, v| {
let _ = writeln!(s, " - {v}");
s
Expand Down

0 comments on commit 2e4bbc0

Please sign in to comment.