Skip to content

Commit a12b009

Browse files
Changed the XML comments
1 parent 6f81b73 commit a12b009

File tree

1 file changed

+2
-2
lines changed
  • Paragraphs/Copy-style-between-documents/Copy-style-between-documents

1 file changed

+2
-2
lines changed

Paragraphs/Copy-style-between-documents/Copy-style-between-documents/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
using (FileStream destinationStream = new FileStream(Path.GetFullPath(@"Data/DestinationDocument.docx"), FileMode.Open, FileAccess.ReadWrite))
55
{
6-
//Open the source document.
6+
//Open the destination document.
77
using (WordDocument destinationDocument = new WordDocument(destinationStream, FormatType.Docx))
88
{
99
using (FileStream sourceStream = new FileStream(Path.GetFullPath(@"Data/SourceDocument.docx"), FileMode.Open, FileAccess.ReadWrite))
1010
{
11-
//Open the destination document.
11+
//Open the source document.
1212
using (WordDocument sourceDocument = new WordDocument(sourceStream, FormatType.Docx))
1313
{
1414
// Retrieve the specific style from the source document.

0 commit comments

Comments
 (0)