We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e19fb33 commit d1bb3dcCopy full SHA for d1bb3dc
src/main.rs
@@ -14,7 +14,7 @@ struct Info {
14
impl fmt::Display for Info {
15
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
16
let mut s = String::new();
17
- s.push_str(&("Project: ".blue().bold().to_string() + &format!("{}\n", self.project_name)));
+ s.push_str(&("\nProject: ".blue().bold().to_string() + &format!("{}\n", self.project_name)));
18
s.push_str(&("Language: ".blue().bold().to_string() + &format!("{}\n", self.language)));
19
s.push_str(&("Author: ".blue().bold().to_string() + &format!("{}\n", self.author)));
20
s.push_str(&("Repo: ".blue().bold().to_string() + &format!("{}\n", self.repo)));
0 commit comments