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("}");