chore(aesthetic): use a capital V to make the ear more natural

This commit is contained in:
Muhammad Nauman Raza 2024-10-29 19:44:36 +00:00
parent 451df20a7b
commit a47a8f819a
Signed by: devraza
GPG key ID: 91EAD6081011574B

View file

@ -66,7 +66,7 @@ fn ascii_art(args: &Args) -> [String; 3] {
return ["(\\ /)".to_string(), "( . .)".to_string(), bottom]; return ["(\\ /)".to_string(), "( . .)".to_string(), bottom];
} else { } else {
let top = format!("{}", ".".red()).to_string(); let top = format!("{}", ".".red()).to_string();
return [top, "\\\\ /\\".to_string(), " \\\\//v".to_string()]; return [top, "\\\\ /\\".to_string(), " \\\\//V".to_string()];
} }
} }