diff --git a/src/DocumentFormat.OpenXml.Framework/OpenXmlPartWriterSettings.cs b/src/DocumentFormat.OpenXml.Framework/OpenXmlPartWriterSettings.cs index 92cea3f4d..88e076308 100644 --- a/src/DocumentFormat.OpenXml.Framework/OpenXmlPartWriterSettings.cs +++ b/src/DocumentFormat.OpenXml.Framework/OpenXmlPartWriterSettings.cs @@ -6,24 +6,24 @@ namespace DocumentFormat.OpenXml; /// -/// Settings for the OpenXmlPartWriter. +/// Settings for the . /// public class OpenXmlPartWriterSettings { #if FEATURE_ASYNC_SAX_XML /// - /// Gets or sets a value indicating whether asynchronous OpenXmlPartWriter methods can be used. + /// Gets or sets a value indicating whether asynchronous methods can be used. /// public bool Async { get; set; } #endif /// - /// Gets or sets a value indicating whether the OpenXmlPartWriter should check to ensure that all characters in the document conform to the "2.2 Characters" section of the W3C XML 1.0 Recommendation. + /// Gets or sets a value indicating whether the should also close the underlying stream or TextWriter when the Close() method is called. /// public bool CloseOutput { get; set; } /// - /// Gets or sets a value indicating whether the OpenXmlPartWriter should also close the underlying stream or TextWriter when the Close() method is called. + /// Gets or sets the type of text encoding to use. /// public Encoding Encoding { get; set; } = Encoding.UTF8; }