Skip to content

Commit 29a6bfd

Browse files
committed
Improved comment.
1 parent 06c7a0e commit 29a6bfd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Magick.NET.Core/IMagickImage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ public partial interface IMagickImage : IMagickImageCreateOperations, IDisposabl
856856
/// <summary>
857857
/// Displaces an image's colormap by a given number of positions.
858858
/// </summary>
859-
/// <param name="amount">Displace the colormap this amount.</param>
859+
/// <param name="amount">The amount to displace the colormap.</param>
860860
/// <exception cref="MagickException">Thrown when an error is raised by ImageMagick.</exception>
861861
void CycleColormap(int amount);
862862

src/Magick.NET/MagickImage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2492,7 +2492,7 @@ public IReadOnlyList<IMagickImage<QuantumType>> CropToTiles(IMagickGeometry geom
24922492
/// <summary>
24932493
/// Displaces an image's colormap by a given number of positions.
24942494
/// </summary>
2495-
/// <param name="amount">Displace the colormap this amount.</param>
2495+
/// <param name="amount">The amount to displace the colormap.</param>
24962496
/// <exception cref="MagickException">Thrown when an error is raised by ImageMagick.</exception>
24972497
public void CycleColormap(int amount)
24982498
=> _nativeInstance.CycleColormap(amount);

0 commit comments

Comments
 (0)