diff --git a/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with Document/Join and append documents.cs b/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with Document/Join and append documents.cs index b37fdd5b..ed986d59 100644 --- a/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with Document/Join and append documents.cs +++ b/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with Document/Join and append documents.cs @@ -485,7 +485,7 @@ public void SmartStyleBehavior() builder.InsertDocument(srcDoc, ImportFormatMode.KeepSourceFormatting, options); - dstDoc.Save(ArtifactsDir + "DocumentBuilder.SmartStyleBehavior.docx"); + dstDoc.Save(ArtifactsDir + "JoinAndAppendDocuments.SmartStyleBehavior.docx"); //ExEnd:SmartStyleBehavior } diff --git a/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with List.cs b/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with List.cs index aba3015a..9fafafee 100644 --- a/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with List.cs +++ b/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with List.cs @@ -36,7 +36,7 @@ public void RestartListAtEachSection() builder.Writeln("List item 3"); builder.Writeln("List item 4"); - doc.Save(ArtifactsDir + "OoxmlSaveOptions.RestartingDocumentList.docx", options); + doc.Save(ArtifactsDir + "WorkingWithList.RestartingDocumentList.docx", options); //ExEnd:RestartListAtEachSection }