Skip to content

Commit

Permalink
Remove stray semicolon (#1)
Browse files Browse the repository at this point in the history
Remove stray semicolon
  • Loading branch information
Mark-Simulacrum authored and moparisthebest committed Oct 13, 2019
1 parent 2403083 commit 7b19b9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

0 comments on commit 7b19b9e

Please sign in to comment.