diff --git a/src/ImageSharp/Processing/Extensions/Dithering/DitherExtensions.cs b/src/ImageSharp/Processing/Extensions/Dithering/DitherExtensions.cs
index e765ea9b0..a04aa0df8 100644
--- a/src/ImageSharp/Processing/Extensions/Dithering/DitherExtensions.cs
+++ b/src/ImageSharp/Processing/Extensions/Dithering/DitherExtensions.cs
@@ -73,7 +73,7 @@ namespace SixLabors.ImageSharp.Processing
source.ApplyProcessor(new PaletteDitherProcessor(dither, ditherScale, palette));
///
- /// Dithers the image reducing it to a web-safe palette using .
+ /// Dithers the image reducing it to a web-safe palette using .
///
/// The image this method extends.
///
@@ -81,7 +81,7 @@ namespace SixLabors.ImageSharp.Processing
///
/// The to allow chaining of operations.
public static IImageProcessingContext Dither(this IImageProcessingContext source, Rectangle rectangle) =>
- Dither(source, KnownDitherings.Bayer4x4, rectangle);
+ Dither(source, KnownDitherings.Bayer8x8, rectangle);
///
/// Dithers the image reducing it to a web-safe palette using ordered dithering.