Skip to content

Commit

Permalink
Fixed document name
Browse files Browse the repository at this point in the history
  • Loading branch information
vderyushev committed Aug 5, 2024
1 parent 3c57442 commit d72933f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Examples/ApiExamples/ApiExamples/ExLowCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public void ConvertStream()
Converter.Convert(streamIn, streamOut, SaveFormat.Docx);

OoxmlSaveOptions saveOptions = new OoxmlSaveOptions { Password = "Aspose.Words" };
using (FileStream streamOut = new FileStream(ArtifactsDir + "LowCode.MergeStreamDocument.SaveOptions.docx", FileMode.Create, FileAccess.ReadWrite))
using (FileStream streamOut = new FileStream(ArtifactsDir + "LowCode.ConvertStream.SaveOptions.docx", FileMode.Create, FileAccess.ReadWrite))
Converter.Convert(streamIn, streamOut, saveOptions);
}
//ExEnd:ConvertStream
Expand Down

0 comments on commit d72933f

Please sign in to comment.