From a47a8f819af184477debd738d70771fa0720a9dd Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Tue, 29 Oct 2024 19:44:36 +0000 Subject: [PATCH] chore(aesthetic): use a capital `V` to make the ear more natural --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 1b7dd00..ab2d1b7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -66,7 +66,7 @@ fn ascii_art(args: &Args) -> [String; 3] { return ["(\\ /)".to_string(), "( . .)".to_string(), bottom]; } else { let top = format!("{}", ".".red()).to_string(); - return [top, "\\\\ /\\".to_string(), " \\\\//v".to_string()]; + return [top, "\\\\ /\\".to_string(), " \\\\//V".to_string()]; } }