From 0b0512570f87ff79bf17d439088b653531222b8b Mon Sep 17 00:00:00 2001 From: Michiel Hazelhof Date: Tue, 12 Aug 2025 15:02:49 +0200 Subject: [PATCH] Clarify language --- src/licenseGen/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/licenseGen/Program.cs b/src/licenseGen/Program.cs index 88df053..5d7c4e3 100644 --- a/src/licenseGen/Program.cs +++ b/src/licenseGen/Program.cs @@ -11,8 +11,8 @@ namespace licenseGen; internal class Program { private static readonly CommandLineApplication App = new(); - private static readonly CommandOption Cert = App.Option("--cert", "cert file", CommandOptionType.SingleValue); - private static readonly CommandOption CoreDll = App.Option("--core", "path to core dll", CommandOptionType.SingleValue); + private static readonly CommandOption Cert = App.Option("--cert", "Certifcate file", CommandOptionType.SingleValue); + private static readonly CommandOption CoreDll = App.Option("--core", "Path to Core.dll", CommandOptionType.SingleValue); private static Int32 Main(String[] args) {