Skip to content

Commit e8895f0

Browse files
authored
fix: remove reference to unknown variable (fixes #28)
1 parent 153fd44 commit e8895f0

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
@@ -25,7 +25,7 @@ fn calculate_mandelbrot( // <2>
2525
row.push(escaped_at);
2626
}
2727

28-
all_rows.push(row);
28+
rows.push(row);
2929
}
3030
rows
3131
}

0 commit comments

Comments
 (0)