@@ -1232,7 +1232,7 @@ protected virtual void OpenFile(string fileName, bool append)
12321232 _stream . AcquireLock ( ) ;
12331233 try
12341234 {
1235- SetQwForFiles ( _stream ) ;
1235+ SetQWForFiles ( _stream ) ;
12361236 }
12371237 finally
12381238 {
@@ -1250,22 +1250,22 @@ protected virtual void OpenFile(string fileName, bool append)
12501250 /// <param name="fileStream">the file stream that has been opened for writing</param>
12511251 /// <remarks>
12521252 /// <para>
1253- /// This implementation of <see cref="SetQwForFiles (Stream)"/> creates a <see cref="StreamWriter"/>
1253+ /// This implementation of <see cref="SetQWForFiles (Stream)"/> creates a <see cref="StreamWriter"/>
12541254 /// over the <paramref name="fileStream"/> and passes it to the
1255- /// <see cref="SetQwForFiles (TextWriter)"/> method.
1255+ /// <see cref="SetQWForFiles (TextWriter)"/> method.
12561256 /// </para>
12571257 /// <para>
12581258 /// This method can be overridden by subclasses that want to wrap the
12591259 /// <see cref="Stream"/> in some way, for example to encrypt the output
12601260 /// data using a <c>System.Security.Cryptography.CryptoStream</c>.
12611261 /// </para>
12621262 /// </remarks>
1263- protected virtual void SetQwForFiles ( Stream fileStream )
1263+ protected virtual void SetQWForFiles ( Stream fileStream )
12641264 {
12651265#pragma warning disable CA2000 // Dispose objects before losing scope
12661266 StreamWriter writer = new ( fileStream , Encoding ) ;
12671267#pragma warning restore CA2000 // Dispose objects before losing scope
1268- SetQwForFiles ( writer ) ;
1268+ SetQWForFiles ( writer ) ;
12691269 }
12701270
12711271 /// <summary>
@@ -1278,7 +1278,7 @@ protected virtual void SetQwForFiles(Stream fileStream)
12781278 /// wrap the <see cref="TextWriter"/> in some way.
12791279 /// </para>
12801280 /// </remarks>
1281- protected virtual void SetQwForFiles ( TextWriter writer )
1281+ protected virtual void SetQWForFiles ( TextWriter writer )
12821282 => QuietWriter = new ( writer , ErrorHandler ) ;
12831283
12841284 /// <summary>
0 commit comments