From 506b59686b3e43368069adf948af991d13372182 Mon Sep 17 00:00:00 2001 From: Scott Williams Date: Fri, 3 Feb 2017 10:32:54 +0000 Subject: [PATCH] xml doc fixes --- .../Brushes/Processors/BrushApplicator.cs | 12 ++++-------- .../Pens/Processors/PenApplicator.cs | 6 ++---- 2 files changed, 6 insertions(+), 12 deletions(-) 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(); ///