We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 939b22b commit ee4b2ddCopy full SHA for ee4b2dd
src/DocGenerator/Documentation/Blocks/CSharpBlock.cs
@@ -54,7 +54,7 @@ private string ExtractCallOutsFromCode(string value)
54
var matches = Callout.Matches(value);
55
var callouts = new List<string>();
56
57
- foreach (Match match in matches) callouts.Add($"{match.Groups["callout"].Value} {match.Groups["text"].Value}");
+ foreach (Match match in matches) callouts.Add($"{match.Groups["callout"].Value} {match.Groups["text"].Value.TrimEnd()}");
58
59
if (callouts.Any())
60
{
0 commit comments