Skip to content

Commit d4b5eb5

Browse files
Fix documentation comment
1 parent c690e0c commit d4b5eb5

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/ImageSharp/Image.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ public abstract partial class Image : IImage, IConfigurable
2424
/// <summary>
2525
/// Initializes a new instance of the <see cref="Image"/> class.
2626
/// </summary>
27-
/// <param name="configuration">The <see cref="IConfigurable.Configuration"/>.</param>
27+
/// <param name="configuration">
28+
/// The configuration which allows altering default behaviour or extending the library.
29+
/// </param>
2830
/// <param name="pixelType">The <see cref="PixelTypeInfo"/>.</param>
2931
/// <param name="metadata">The <see cref="ImageMetadata"/>.</param>
3032
/// <param name="size">The <see cref="size"/>.</param>

src/ImageSharp/ImageFrame.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
using System;
55
using SixLabors.ImageSharp.Advanced;
6-
using SixLabors.ImageSharp.Memory;
76
using SixLabors.ImageSharp.Metadata;
87
using SixLabors.ImageSharp.PixelFormats;
98

@@ -21,9 +20,9 @@ public abstract partial class ImageFrame : IConfigurable, IDisposable
2120
/// <summary>
2221
/// Initializes a new instance of the <see cref="ImageFrame"/> class.
2322
/// </summary>
24-
/// <param name="configuration">The <see cref="Configuration"/>.</param>
25-
/// <param name="width">The width.</param>
26-
/// <param name="height">The height.</param>
23+
/// <param name="configuration">The configuration which allows altering default behaviour or extending the library.</param>
24+
/// <param name="width">The frame width.</param>
25+
/// <param name="height">The frame height.</param>
2726
/// <param name="metadata">The <see cref="ImageFrameMetadata"/>.</param>
2827
protected ImageFrame(Configuration configuration, int width, int height, ImageFrameMetadata metadata)
2928
{

0 commit comments

Comments
 (0)