Skip to content

Commit f997bdd

Browse files
committed
Generate a complete sentence
1 parent 67bbd18 commit f997bdd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

OpenStackNetAnalyzers/OpenStackNetAnalyzers/DocumentDelegatingApiCallCodeFix.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ private async Task<Document> CreateChangedDocument(CodeFixContext context, Class
8585
XmlSyntaxFactory.Text("This class represents an HTTP API call to "),
8686
XmlSyntaxFactory.PlaceholderElement(XmlSyntaxFactory.Text(callName)),
8787
XmlSyntaxFactory.Text(" with the "),
88-
XmlSyntaxFactory.PlaceholderElement(XmlSyntaxFactory.Text(fullServiceName))),
88+
XmlSyntaxFactory.PlaceholderElement(XmlSyntaxFactory.Text(fullServiceName)),
89+
XmlSyntaxFactory.Text(".")),
8990
XmlSyntaxFactory.NewLine(),
9091
XmlSyntaxFactory.SeeAlsoElement(SyntaxFactory.NameMemberCref(SyntaxFactory.ParseName($"{serviceInterfaceName}.Prepare{callName}Async"))),
9192
XmlSyntaxFactory.NewLine(),

0 commit comments

Comments
 (0)