From 32977f9f2d7bc776f84ff90b11294beb75c5c3bb Mon Sep 17 00:00:00 2001 From: Steve Schafer Date: Sun, 23 Jun 2024 10:35:51 -0400 Subject: [PATCH] fix typo in doc comment --- src/Vogen/GenerateCodeForParse.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Vogen/GenerateCodeForParse.cs b/src/Vogen/GenerateCodeForParse.cs index e2affe4d59..f168507c0a 100644 --- a/src/Vogen/GenerateCodeForParse.cs +++ b/src/Vogen/GenerateCodeForParse.cs @@ -125,14 +125,14 @@ private static void BuildParseMethod(IMethodSymbol methodSymbol, StringBuilder s var inheritDocRef = methodSymbol.ToString()! .Replace("<", "{") .Replace(">", "}"); - + var ret = @$" /// /// /// /// - /// The value created by calling the Parse method method on the primitive. + /// The value created by calling the Parse method on the primitive. /// /// Thrown when the value can be parsed, but is not valid. public {staticOrNot}{item.VoTypeName} Parse({parameters}) {{