Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: dotnet-bot <[email protected]>

Commit migrated from dotnet/coreclr@44ad761
  • Loading branch information
dotnet-bot authored and jkotas committed Nov 20, 2017
1 parent ce3cd6f commit 4de1fb3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/coreclr/src/mscorlib/shared/System/IO/MemoryStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Threading;
Expand Down Expand Up @@ -504,7 +503,7 @@ public override void CopyTo(Stream destination, int bufferSize)

public override Task CopyToAsync(Stream destination, int bufferSize, CancellationToken cancellationToken)
{
// This implementation offers beter performance compared to the base class version.
// This implementation offers better performance compared to the base class version.

StreamHelpers.ValidateCopyToArgs(this, destination, bufferSize);

Expand Down

0 comments on commit 4de1fb3

Please sign in to comment.