Skip to content

Commit

Permalink
fix raku ascii logo
Browse files Browse the repository at this point in the history
  • Loading branch information
o2sh committed Nov 14, 2020
1 parent cad3ab3 commit f3cbcf7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions resources/raku.ascii
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
{0}8DD {1}TMD8M,{0}8M {4}8
{0}8D#=e@8MM^ {4}8
{0}*MDw {4},.,+#M`
{0}"8# {0},e88DDDD8#
{0}"8 {3}x33#, {0}z8D#M`9Dw "9D
{3}JE E {2}BBW. {0}DM {1}p#Kw {0}D8 {0}JD
{0}"8# {0},e88DDDD8m,
{0}"8 {3}x33#, {0}z8D#M`9Dw "9DW
{3}JE E {2}BBW. {0}DM {1}p#Kw {0}D8 {0}JDM
{1}#pp#pr {3} JRFMy{2}#EEF{3}y#Rr, {0}DM{1} MD]8 {0}9DM {4}`N
{1}Z#{0}8#D]{1}D# {2}EE#EEEEE{3}`EW E {0}8M,{1}"RM`{0} 8DM {4}D
{1}88{0}8]D]{1}D8 {2}EEM{1}#{2}EEE{1}E{2}Bp{3}TFF^ {0}*M888#` {4}#M
Expand Down
4 changes: 1 addition & 3 deletions src/onefetch/language.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,7 @@ macro_rules! define_languages {
let lines: Vec<_> = ASCII.lines().skip_while(|line| line.is_empty()).collect();
let (start, end) = get_min_start_max_end(&lines);
assert!(start <= end);
if (end - start > MAX_WIDTH) {
panic!("{} is too wide", $ascii)
}
assert_le!(end - start, MAX_WIDTH, concat!($ascii, " is too wide."));
}

#[test]
Expand Down

0 comments on commit f3cbcf7

Please sign in to comment.