From fab2b2cb631e3534e01f9fc5b2f1c9aa61c1e064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Carandini?= Date: Thu, 28 Dec 2023 09:16:15 +0100 Subject: [PATCH] Update Program.cs to fix error message --- tools/KristofferStrube.Blazor.COSEGenerator/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/KristofferStrube.Blazor.COSEGenerator/Program.cs b/tools/KristofferStrube.Blazor.COSEGenerator/Program.cs index 60f13d0..be5a51c 100644 --- a/tools/KristofferStrube.Blazor.COSEGenerator/Program.cs +++ b/tools/KristofferStrube.Blazor.COSEGenerator/Program.cs @@ -2,7 +2,7 @@ if (args.Length != 3) { - throw new ArgumentException("There should be parsed 2 arguments to this program. The first should be a CSV file containing COSE algorithm descriptions, the second should be the destination to generate the C# file, and the third should be the namespace to use for the class."); + throw new ArgumentException("There should be parsed 3 arguments to this program. The first should be a CSV file containing COSE algorithm descriptions, the second should be the destination to generate the C# file, and the third should be the namespace to use for the class."); } using FileStream sourceStream = File.Open(args[0], FileMode.Open);