Skip to content

Commit f583b0f

Browse files
committed
Bugfix for last change
1 parent 1641833 commit f583b0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/factory.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ impl PersonalInformation {
116116
for item in &info {
117117
if item.len() < longest_info {longest_info = item.len()}
118118
}
119-
let top_text = "| \u{001b}[1m" + card_top_text +"\u{001b}[22m";
119+
let top_text = ["| \u{001b}[1m" , card_top_text ,"\u{001b}[22m"].concat();
120120
println!("\u{001b}[2J");
121121
print_a_line(logo[0].len() + 70);
122122
for i in 0..logo.len() {

0 commit comments

Comments
 (0)