Skip to content

Commit f4be2f7

Browse files
Fix comment
1 parent fe045b5 commit f4be2f7

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

src/ImageSharp.Drawing/Processing/Processors/Drawing/RecursiveImageProcessor.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,8 @@ public void Dispose()
7676

7777
public void Execute()
7878
{
79-
// Perform any processing logic you want here, in this case we are going to
80-
// clone the source image then apply the changes requested before using an
81-
// image brush to draw that portion the the original image
82-
// so clone out our source image so we can apply
83-
// various effects to it without mutating the origional yet.
79+
// Clone out our source image so we can apply various effects to it without mutating
80+
// the original yet.
8481
using Image<TPixel> clone = this.source.Clone(this.recursiveImageProcessor.Operation);
8582

8683
// Use an image brush to apply cloned image as the source for filling the shape.

0 commit comments

Comments
 (0)