XML Kommentare für Delphi Documentation Insight

This commit is contained in:
Philipp Winkel 2020-11-10 17:54:59 +01:00
parent 96eeb95d17
commit 023c5197fe
1 changed files with 3 additions and 3 deletions

View File

@ -643,11 +643,11 @@ begin
lines.Text := WrapText(documentation, 76);
AWriter.WriteLine(' {');
AWriter.WriteLine(' /// <summary>');
for lineIndex := 0 to Pred(lines.Count) do
AWriter.WriteLine(' ' + lines[lineIndex]);
AWriter.WriteLine(' /// ' + lines[lineIndex]);
AWriter.WriteLine(' }');
AWriter.WriteLine(' /// </summary>');
finally
FreeAndNil(lines);
end;