Skip to content

Commit

Permalink
Merge pull request #295 from jnm2/documentation_period_style
Browse files Browse the repository at this point in the history
Include the period in the full-sentence link in XML docs
  • Loading branch information
AArnott authored Jun 14, 2021
2 parents 22c36a8 + ef646dd commit 7da8838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.Windows.CsWin32/Generator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1891,7 +1891,7 @@ private static T AddApiDocumentation<T>(string api, T memberDeclaration)
else if (docs.HelpLink is object)
{
docCommentsBuilder.AppendLine();
docCommentsBuilder.AppendLine($@"/// <para><see href=""{docs.HelpLink}"">Learn more about this API from docs.microsoft.com</see>.</para>");
docCommentsBuilder.AppendLine($@"/// <para><see href=""{docs.HelpLink}"">Learn more about this API from docs.microsoft.com.</see></para>");
docCommentsBuilder.Append("/// ");
}

Expand Down

0 comments on commit 7da8838

Please sign in to comment.