From 82a5943303fd619124f64eedb8f72693fddb5fcf Mon Sep 17 00:00:00 2001 From: James Clark Date: Fri, 26 Aug 2022 07:57:17 -0500 Subject: [PATCH] Fix spelling mistake --- .../Manifest/ManifestCodeWriter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Community.VisualStudio.SourceGenerators/Manifest/ManifestCodeWriter.cs b/src/Community.VisualStudio.SourceGenerators/Manifest/ManifestCodeWriter.cs index 67015f0..9a13afb 100644 --- a/src/Community.VisualStudio.SourceGenerators/Manifest/ManifestCodeWriter.cs +++ b/src/Community.VisualStudio.SourceGenerators/Manifest/ManifestCodeWriter.cs @@ -28,7 +28,7 @@ public static GeneratedFile Write(Manifest manifest, string codeNamespace, strin builder.AppendLine(" /// The name of the extension."); builder.AppendLine($" public const string Name = \"{EscapeStringLiteral(manifest.Name)}\";"); builder.AppendLine(""); - builder.AppendLine(" /// The verison of the extension."); + builder.AppendLine(" /// The version of the extension."); builder.AppendLine($" public const string Version = \"{EscapeStringLiteral(manifest.Version)}\";"); builder.AppendLine(" }"); builder.AppendLine("}");