Skip to content

Commit

Permalink
fix: remove reference to unknown variable (fixes rust-in-action#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
timClicks authored Aug 8, 2021
1 parent 153fd44 commit e8895f0
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 @@ -25,7 +25,7 @@ fn calculate_mandelbrot( // <2>
row.push(escaped_at);
}

all_rows.push(row);
rows.push(row);
}
rows
}
Expand Down

0 comments on commit e8895f0

Please sign in to comment.