Skip to content

Commit f3cbcf7

Browse files
committed
fix raku ascii logo
1 parent cad3ab3 commit f3cbcf7

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

Diff for: resources/raku.ascii

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
{0}8DD {1}TMD8M,{0}8M {4}8
55
{0}8D#=e@8MM^ {4}8
66
{0}*MDw {4},.,+#M`
7-
{0}"8# {0},e88DDDD8#
8-
{0}"8 {3}x33#, {0}z8D#M`9Dw "9D
9-
{3}JE E {2}BBW. {0}DM {1}p#Kw {0}D8 {0}JD
7+
{0}"8# {0},e88DDDD8m,
8+
{0}"8 {3}x33#, {0}z8D#M`9Dw "9DW
9+
{3}JE E {2}BBW. {0}DM {1}p#Kw {0}D8 {0}JDM
1010
{1}#pp#pr {3} JRFMy{2}#EEF{3}y#Rr, {0}DM{1} MD]8 {0}9DM {4}`N
1111
{1}Z#{0}8#D]{1}D# {2}EE#EEEEE{3}`EW E {0}8M,{1}"RM`{0} 8DM {4}D
1212
{1}88{0}8]D]{1}D8 {2}EEM{1}#{2}EEE{1}E{2}Bp{3}TFF^ {0}*M888#` {4}#M

Diff for: src/onefetch/language.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,7 @@ macro_rules! define_languages {
141141
let lines: Vec<_> = ASCII.lines().skip_while(|line| line.is_empty()).collect();
142142
let (start, end) = get_min_start_max_end(&lines);
143143
assert!(start <= end);
144-
if (end - start > MAX_WIDTH) {
145-
panic!("{} is too wide", $ascii)
146-
}
144+
assert_le!(end - start, MAX_WIDTH, concat!($ascii, " is too wide."));
147145
}
148146

149147
#[test]

0 commit comments

Comments
 (0)