Skip to content

Commit cff02d5

Browse files
authored
fix: reinstate inclusive ranges
1 parent 509fe8c commit cff02d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ch2/ch2-mandelbrot/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ fn render_mandelbrot(escape_vals: Vec<Vec<usize>>) {
5555
0..=2 => ' ',
5656
3..=5 => '.',
5757
6..=10 => '•',
58-
11..30 => '*',
58+
11..=30 => '*',
5959
31..=100 => '+',
6060
101..=200 => 'x',
6161
201..=400 => '$',

0 commit comments

Comments
 (0)