Browse Source

Fixed a typo

pull/1065/head
Sergio Pedri 6 years ago
parent
commit
8c26624487
  1. 2
      src/ImageSharp/Processing/Processors/PixelShading/PositionAwarePixelShaderProcessor.cs

2
src/ImageSharp/Processing/Processors/PixelShading/PositionAwarePixelShaderProcessor.cs

@ -32,7 +32,7 @@ namespace SixLabors.ImageSharp.Processing.Processors.PixelShading
public IImageProcessor<TPixel> CreatePixelSpecificProcessor<TPixel>(Image<TPixel> source, Rectangle sourceRectangle)
where TPixel : struct, IPixel<TPixel>
{
return new PositionAwarePixelShader<TPixel>(this, source, sourceRectangle);
return new PositionAwarePixelShaderProcessor<TPixel>(this, source, sourceRectangle);
}
}
}

Loading…
Cancel
Save