From 95b5b15cb5cc3fece0b3c6674158f09ce14b0e1c Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Tue, 21 May 2024 14:21:24 +0100 Subject: [PATCH] Fix comment --- .../SyntaxReceiver/AttributeArgumentListParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProxyInterfaceSourceGenerator/SyntaxReceiver/AttributeArgumentListParser.cs b/src/ProxyInterfaceSourceGenerator/SyntaxReceiver/AttributeArgumentListParser.cs index 7b7f028..52b5eae 100644 --- a/src/ProxyInterfaceSourceGenerator/SyntaxReceiver/AttributeArgumentListParser.cs +++ b/src/ProxyInterfaceSourceGenerator/SyntaxReceiver/AttributeArgumentListParser.cs @@ -14,7 +14,7 @@ internal static class AttributeArgumentListParser { if (argumentList is null || argumentList.Arguments.Count is < 1 or > 4) { - throw new ArgumentException("The ProxyAttribute requires 1, 2 or 3 arguments."); + throw new ArgumentException("The ProxyAttribute requires 1, 2, 3 or 4 arguments."); } ProxyInterfaceGeneratorAttributeArguments result;