Skip to content

Commit

Permalink
fix: reinstate inclusive ranges
Browse files Browse the repository at this point in the history
  • Loading branch information
timClicks authored Aug 17, 2021
1 parent 509fe8c commit cff02d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch2/ch2-mandelbrot/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fn render_mandelbrot(escape_vals: Vec<Vec<usize>>) {
0..=2 => ' ',
3..=5 => '.',
6..=10 => '•',
11..30 => '*',
11..=30 => '*',
31..=100 => '+',
101..=200 => 'x',
201..=400 => '$',
Expand Down

0 comments on commit cff02d5

Please sign in to comment.