diff --git a/src/ImageSharp/Processing/AutoOrientExtensions.cs b/src/ImageSharp/Processing/AutoOrientExtensions.cs
index d065d4583..a831e2d9a 100644
--- a/src/ImageSharp/Processing/AutoOrientExtensions.cs
+++ b/src/ImageSharp/Processing/AutoOrientExtensions.cs
@@ -7,7 +7,7 @@ using SixLabors.ImageSharp.Processing.Processors.Transforms;
namespace SixLabors.ImageSharp.Processing
{
///
- /// Defines extensions that allow the application of auto-orientation operations to an
+ /// Defines extensions that allow the application of auto-orientation operations to an
/// using Mutate/Clone.
///
public static class AutoOrientExtensions
@@ -15,11 +15,9 @@ namespace SixLabors.ImageSharp.Processing
///
/// Adjusts an image so that its orientation is suitable for viewing. Adjustments are based on EXIF metadata embedded in the image.
///
- /// The pixel format.
/// The image to auto rotate.
- /// The
- public static IImageProcessingContext AutoOrient(this IImageProcessingContext source)
- where TPixel : struct, IPixel
- => source.ApplyProcessor(new AutoOrientProcessor());
+ /// The to allow chaining of operations.
+ public static IImageProcessingContext AutoOrient(this IImageProcessingContext source)
+ => source.ApplyProcessor(new AutoOrientProcessor());
}
}
\ No newline at end of file
diff --git a/tests/ImageSharp.Tests/Processing/Transforms/AutoOrientTests.cs b/tests/ImageSharp.Tests/Processing/Transforms/AutoOrientTests.cs
index bba4661db..0547b46e3 100644
--- a/tests/ImageSharp.Tests/Processing/Transforms/AutoOrientTests.cs
+++ b/tests/ImageSharp.Tests/Processing/Transforms/AutoOrientTests.cs
@@ -16,7 +16,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Transforms
public void AutoOrient_AutoOrientProcessor()
{
this.operations.AutoOrient();
- this.Verify>();
+ this.Verify();
}
}
}
\ No newline at end of file