diff --git a/src/ImageSharp.Drawing/Brushes/Processors/BrushApplicator.cs b/src/ImageSharp.Drawing/Brushes/Processors/BrushApplicator.cs
index 97d3f840cb..37af8cd046 100644
--- a/src/ImageSharp.Drawing/Brushes/Processors/BrushApplicator.cs
+++ b/src/ImageSharp.Drawing/Brushes/Processors/BrushApplicator.cs
@@ -19,16 +19,12 @@ namespace ImageSharp.Drawing.Processors
///
/// Gets the color for a single pixel.
///
- /// The x.
- /// The y.
- ///
- /// The color
- ///
+ /// The x cordinate.
+ /// The y cordinate.
+ /// The a that should be applied to the pixel.
public abstract TColor this[int x, int y] { get; }
- ///
- /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
- ///
+ ///
public abstract void Dispose();
}
}
diff --git a/src/ImageSharp.Drawing/Pens/Processors/PenApplicator.cs b/src/ImageSharp.Drawing/Pens/Processors/PenApplicator.cs
index de680c809c..cba4d9fdc5 100644
--- a/src/ImageSharp.Drawing/Pens/Processors/PenApplicator.cs
+++ b/src/ImageSharp.Drawing/Pens/Processors/PenApplicator.cs
@@ -22,10 +22,8 @@ namespace ImageSharp.Drawing.Processors
/// The required region.
///
public abstract RectangleF RequiredRegion { get; }
-
- ///
- /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
- ///
+
+ ///
public abstract void Dispose();
///