Skip to content

Commit e267ed8

Browse files
Apply suggestions from code review
Co-authored-by: Dmitry Eliseev <81766219+dmitry-eliseev-devexpress@users.noreply.github.com>
1 parent 92258a8 commit e267ed8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@ for AReportParameter in AReport.Parameters do
9696
Once a report layout is configured (including data binding and parameters),
9797
you can export reports in any supported format.
9898

99-
The current example exports a PDF report and saves it to a file:
99+
The current example generates a report and exports it to a file in the PDF format:
100100

101101
**Delphi:**
102102
```pas
103103
AStream := TMemoryStream.Create; // AStream: TMemoryStream;
104104
try
105-
// Export a report to PDF format and save it to a memory stream
105+
// Export a report to a memory stream in the PDF format
106106
AReport.ExportToPDF(AStream);
107-
// Write the content of the memory stream to a file
107+
// Save memory stream content to a file
108108
AStream.SaveToFile('Order_11077.pdf');
109109
finally
110110
AStream.Free;

0 commit comments

Comments
 (0)