Skip to content

Commit

Permalink
Merge pull request #64 from arapower/fix/help-message
Browse files Browse the repository at this point in the history
Fix: Help Message
  • Loading branch information
Ph0enixKM committed May 18, 2024
2 parents ab0aa81 + 065daf5 commit eedd681
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli/cli_interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl CLI {
}
println!("{}", "For compiling:".dimmed());
{
let example = format!("{} foo{} bar{}", self.exe_name, self.ext, self.ext).dimmed();
let example = format!("{} foo{} bar.sh", self.exe_name, self.ext).dimmed();
println!("\t{} [INPUT] [OUTPUT]\t{}", self.exe_name, example);
}
}
Expand Down Expand Up @@ -158,4 +158,4 @@ impl CLI {
fn read_file(&self, path: impl AsRef<str>) -> io::Result<String> {
fs::read_to_string(path.as_ref())
}
}
}

0 comments on commit eedd681

Please sign in to comment.