diff --git a/src/ImageSharp/Processing/Processors/Binarization/BinaryOrderedDitherProcessor.cs b/src/ImageSharp/Processing/Processors/Binarization/BinaryOrderedDitherProcessor.cs
index 99c57171cf..6cf1a95266 100644
--- a/src/ImageSharp/Processing/Processors/Binarization/BinaryOrderedDitherProcessor.cs
+++ b/src/ImageSharp/Processing/Processors/Binarization/BinaryOrderedDitherProcessor.cs
@@ -8,6 +8,9 @@ using SixLabors.ImageSharp.Processing.Processors.Dithering;
namespace SixLabors.ImageSharp.Processing.Processors.Binarization
{
+ ///
+ /// Defines a binary threshold filtering using ordered dithering.
+ ///
public class BinaryOrderedDitherProcessor : IImageProcessor
{
///
diff --git a/src/ImageSharp/Processing/Processors/Binarization/BinaryThresholdProcessor.cs b/src/ImageSharp/Processing/Processors/Binarization/BinaryThresholdProcessor.cs
index 50086936cd..83701aa8a2 100644
--- a/src/ImageSharp/Processing/Processors/Binarization/BinaryThresholdProcessor.cs
+++ b/src/ImageSharp/Processing/Processors/Binarization/BinaryThresholdProcessor.cs
@@ -41,12 +41,12 @@ namespace SixLabors.ImageSharp.Processing.Processors.Binarization
public float Threshold { get; }
///
- /// Gets or sets the color to use for pixels that are above the threshold.
+ /// Gets the color to use for pixels that are above the threshold.
///
public Color UpperColor { get; }
///
- /// Gets or sets the color to use for pixels that fall below the threshold.
+ /// Gets the color to use for pixels that fall below the threshold.
///
public Color LowerColor { get; }
diff --git a/src/ImageSharp/Processing/Processors/Overlays/BackgroundColorProcessor.cs b/src/ImageSharp/Processing/Processors/Overlays/BackgroundColorProcessor.cs
index 0dd0c41188..62848172a1 100644
--- a/src/ImageSharp/Processing/Processors/Overlays/BackgroundColorProcessor.cs
+++ b/src/ImageSharp/Processing/Processors/Overlays/BackgroundColorProcessor.cs
@@ -6,7 +6,7 @@ using SixLabors.ImageSharp.PixelFormats;
namespace SixLabors.ImageSharp.Processing.Processors.Overlays
{
///
- /// Defines a processing operation to replace the background color of an .
+ /// Defines a processing operation to replace the background color of an .
///
public sealed class BackgroundColorProcessor : IImageProcessor
{
diff --git a/src/ImageSharp/Processing/Processors/Overlays/GlowProcessor.cs b/src/ImageSharp/Processing/Processors/Overlays/GlowProcessor.cs
index 4927a0ed7a..dcdddb217c 100644
--- a/src/ImageSharp/Processing/Processors/Overlays/GlowProcessor.cs
+++ b/src/ImageSharp/Processing/Processors/Overlays/GlowProcessor.cs
@@ -20,7 +20,6 @@ namespace SixLabors.ImageSharp.Processing.Processors.Overlays
{
}
-
///
/// Initializes a new instance of the class.
///