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

Loading…
Cancel
Save