Browse Source

Fix spelling

pull/326/head
James Jackson-South 9 years ago
parent
commit
22d51633ad
  1. 6
      src/ImageSharp/Image/ImageFrame{TPixel}.cs

6
src/ImageSharp/Image/ImageFrame{TPixel}.cs

@ -25,7 +25,7 @@ namespace SixLabors.ImageSharp
/// </summary>
private Buffer2D<TPixel> pixelBuffer;
private bool isDisosed = false;
private bool isDisposed;
/// <summary>
/// Initializes a new instance of the <see cref="ImageFrame{TPixel}" /> class.
@ -180,7 +180,7 @@ namespace SixLabors.ImageSharp
/// </summary>
public void Dispose()
{
if (this.isDisosed)
if (this.isDisposed)
{
return;
}
@ -189,7 +189,7 @@ namespace SixLabors.ImageSharp
this.pixelBuffer = null;
// Note disposing is done.
this.isDisosed = true;
this.isDisposed = true;
}
/// <inheritdoc/>

Loading…
Cancel
Save