Removed trailing semicolon

This commit is contained in:
Forest Anderson 2019-09-28 23:30:12 -04:00 committed by Forest
parent f39d454f93
commit 6ee99786d6
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
nightly-2019-09-03
nightly-2019-07-03

View File

@ -424,7 +424,7 @@ impl TownVol {
for _ in 0..n {
for _ in 0..ATTEMPTS {
let entrance = {
let start_col = self.choose_column(rng, |_, col| col.is_road()).unwrap();;
let start_col = self.choose_column(rng, |_, col| col.is_road()).unwrap();
let start = Vec3::new(
start_col.x,
start_col.y,