Skip to content

Commit

Permalink
Update Program.cs to fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ncarandini committed Dec 28, 2023
1 parent 4e664b3 commit fab2b2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/KristofferStrube.Blazor.COSEGenerator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit fab2b2c

Please sign in to comment.