From dca67ac781285b52edfa7c22900cea3b9c8e1399 Mon Sep 17 00:00:00 2001 From: Michiel Hazelhof Date: Sun, 14 Sep 2025 09:52:41 +0200 Subject: [PATCH] Fix spelling mistake --- src/licenseGen/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/licenseGen/Program.cs b/src/licenseGen/Program.cs index 6c9c327..393b03f 100644 --- a/src/licenseGen/Program.cs +++ b/src/licenseGen/Program.cs @@ -11,7 +11,7 @@ namespace licenseGen; internal class Program { private static readonly CommandLineApplication App = new(); - private static readonly CommandOption Cert = App.Option("--cert", "Certifcate file", CommandOptionType.SingleValue); + private static readonly CommandOption Cert = App.Option("--cert", "Certificate file", CommandOptionType.SingleValue); private static readonly CommandOption CoreDll = App.Option("--core", "Path to Core.dll", CommandOptionType.SingleValue); private static Int32 Main(String[] args)