@@ -1232,7 +1232,7 @@ protected virtual void OpenFile(string fileName, bool append)
1232
1232
_stream . AcquireLock ( ) ;
1233
1233
try
1234
1234
{
1235
- SetQwForFiles ( _stream ) ;
1235
+ SetQWForFiles ( _stream ) ;
1236
1236
}
1237
1237
finally
1238
1238
{
@@ -1250,22 +1250,22 @@ protected virtual void OpenFile(string fileName, bool append)
1250
1250
/// <param name="fileStream">the file stream that has been opened for writing</param>
1251
1251
/// <remarks>
1252
1252
/// <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"/>
1254
1254
/// over the <paramref name="fileStream"/> and passes it to the
1255
- /// <see cref="SetQwForFiles (TextWriter)"/> method.
1255
+ /// <see cref="SetQWForFiles (TextWriter)"/> method.
1256
1256
/// </para>
1257
1257
/// <para>
1258
1258
/// This method can be overridden by subclasses that want to wrap the
1259
1259
/// <see cref="Stream"/> in some way, for example to encrypt the output
1260
1260
/// data using a <c>System.Security.Cryptography.CryptoStream</c>.
1261
1261
/// </para>
1262
1262
/// </remarks>
1263
- protected virtual void SetQwForFiles ( Stream fileStream )
1263
+ protected virtual void SetQWForFiles ( Stream fileStream )
1264
1264
{
1265
1265
#pragma warning disable CA2000 // Dispose objects before losing scope
1266
1266
StreamWriter writer = new ( fileStream , Encoding ) ;
1267
1267
#pragma warning restore CA2000 // Dispose objects before losing scope
1268
- SetQwForFiles ( writer ) ;
1268
+ SetQWForFiles ( writer ) ;
1269
1269
}
1270
1270
1271
1271
/// <summary>
@@ -1278,7 +1278,7 @@ protected virtual void SetQwForFiles(Stream fileStream)
1278
1278
/// wrap the <see cref="TextWriter"/> in some way.
1279
1279
/// </para>
1280
1280
/// </remarks>
1281
- protected virtual void SetQwForFiles ( TextWriter writer )
1281
+ protected virtual void SetQWForFiles ( TextWriter writer )
1282
1282
=> QuietWriter = new ( writer , ErrorHandler ) ;
1283
1283
1284
1284
/// <summary>
0 commit comments