Skip to content

Commit

Permalink
Fix arrow length
Browse files Browse the repository at this point in the history
  • Loading branch information
nxsaken committed Jan 4, 2024
1 parent 946f96e commit 04e7ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/dining_philosophers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ fn draw_net(mut terms: Query<&mut Terminal>) {
term.put_string([0, y()], r" ^\ /^ ");
term.put_string([0, y()], r" | \ EAT / | ");
term.put_string([0, y()], r" | v v | ");
term.put_string([0, y()], r" | [ ]--->( )----->[ ]<-----( )<----[ ] | ");
term.put_string([0, y()], r" | [ ]--->( )----->[ ]<-----( )<---[ ] | ");
term.put_string([0, y()], r" | taken / ^ taken | ");
term.put_string([0, y()], r" | TAKE / \ TAKE | ");
term.put_string([0, y()], r" | v \ | ");
Expand Down

0 comments on commit 04e7ea8

Please sign in to comment.