Skip to content

Commit 7fc2534

Browse files
committed
Improved comments.
1 parent 7fd4b8e commit 7fc2534

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Magick.NET.Core/IMagickImageCreateOperations.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -865,8 +865,8 @@ public interface IMagickImageCreateOperations
865865
/// <summary>
866866
/// Roll image (rolls image vertically and horizontally).
867867
/// </summary>
868-
/// <param name="x">The X offset from origin.</param>
869-
/// <param name="y">The Y offset from origin.</param>
868+
/// <param name="x">The number of columns to roll in the horizontal direction.</param>
869+
/// <param name="y">The number of rows to roll in the vertical direction.</param>
870870
/// <exception cref="MagickException">Thrown when an error is raised by ImageMagick.</exception>
871871
void Roll(int x, int y);
872872

src/Magick.NET/MagickImage.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5544,8 +5544,8 @@ public void Resize(Percentage percentageWidth, Percentage percentageHeight, Filt
55445544
/// <summary>
55455545
/// Roll image (rolls image vertically and horizontally).
55465546
/// </summary>
5547-
/// <param name="x">The X offset from origin.</param>
5548-
/// <param name="y">The Y offset from origin.</param>
5547+
/// <param name="x">The number of columns to roll in the horizontal direction.</param>
5548+
/// <param name="y">The number of rows to roll in the vertical direction.</param>
55495549
/// <exception cref="MagickException">Thrown when an error is raised by ImageMagick.</exception>
55505550
public void Roll(int x, int y)
55515551
{

0 commit comments

Comments
 (0)