From 7b19b9e91b4ec9364b9c31b80dbdc175061223b9 Mon Sep 17 00:00:00 2001 From: Mark Rousskov Date: Sun, 13 Oct 2019 12:25:30 -0400 Subject: [PATCH] Remove stray semicolon (#1) Remove stray semicolon --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 60789c3..7eb0bc0 100644 --- a/build.rs +++ b/build.rs @@ -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(); }