Remove stray semicolon (#1)

Remove stray semicolon
This commit is contained in:
Mark Rousskov 2019-10-13 12:25:30 -04:00 committed by Travis Burtrum
parent 240308389c
commit 7b19b9e91b
1 changed files with 1 additions and 1 deletions

View File

@ -20,5 +20,5 @@ fn generate(src_path: &Path, dst_path: &Path) {
for word in src.lines() {
write!(dst, "\"{}\",\n", &word.unwrap()).unwrap();
}
write!(dst, "];\n").unwrap();
write!(dst, "]\n").unwrap();
}