From 3428073208930eede86070b2ee794e0c3de9b2d4 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Sun, 2 Jan 2022 03:57:46 +0100 Subject: [PATCH] Forgot semicolon --- src/NadekoBot.Generators/LocalizedStringsGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot.Generators/LocalizedStringsGenerator.cs b/src/NadekoBot.Generators/LocalizedStringsGenerator.cs index ff491fdca..537b0998a 100644 --- a/src/NadekoBot.Generators/LocalizedStringsGenerator.cs +++ b/src/NadekoBot.Generators/LocalizedStringsGenerator.cs @@ -55,7 +55,7 @@ namespace NadekoBot.Generators using (var stringWriter = new StringWriter()) using (var sw = new IndentedTextWriter(stringWriter)) { - sw.WriteLine("namespace NadekoBot"); + sw.WriteLine("namespace NadekoBot;"); sw.WriteLine(); sw.WriteLine("public static class strs");