Skip to content

Commit 8928ef6

Browse files
committed
fixed xml comment 'options' spellings
1 parent cf387ef commit 8928ef6

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

src/ImageSharp.Drawing/Processing/Extensions/ClearExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ namespace SixLabors.ImageSharp.Drawing.Processing
1212
public static class ClearExtensions
1313
{
1414
/// <summary>
15-
/// Clones the graphicoptions and applies changes required to force clearing.
15+
/// Clones the graphic options and applies changes required to force clearing.
1616
/// </summary>
17-
/// <param name="options">The optinos to clone</param>
17+
/// <param name="options">The options to clone</param>
1818
/// <returns>A clone of option with ColorBlendingMode, AlphaCompositionMode, and BlendPercentage set</returns>
1919
internal static GraphicsOptions CloneForClearOperation(this GraphicsOptions options)
2020
{

src/ImageSharp.Drawing/Processing/Extensions/ClearPathExtensions.cs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ namespace SixLabors.ImageSharp.Drawing.Processing
1010
/// Adds extensions that allow the filling of polygon outlines to the <see cref="Image{TPixel}"/> type.
1111
/// </summary>
1212
public static class ClearPathExtensions
13-
{/// <summary>
14-
/// Clones the graphicoptions and applies changes required to force clearing.
15-
/// </summary>
16-
/// <param name="shapeOptions">The optinos to clone</param>
17-
/// <returns>A clone of shapeOptions with ColorBlendingMode, AlphaCompositionMode, and BlendPercentage set</returns>
13+
{
14+
/// <summary>
15+
/// Clones the shape graphic options and applies changes required to force clearing.
16+
/// </summary>
17+
/// <param name="shapeOptions">The options to clone</param>
18+
/// <returns>A clone of shapeOptions with ColorBlendingMode, AlphaCompositionMode, and BlendPercentage set</returns>
1819
internal static ShapeGraphicsOptions CloneForClearOperation(this ShapeGraphicsOptions shapeOptions)
1920
{
2021
var options = shapeOptions.GraphicsOptions.DeepClone();

0 commit comments

Comments
 (0)