@@ -1495,25 +1495,25 @@ public void Chop(IMagickGeometry geometry)
14951495 /// <summary>
14961496 /// Chop image (remove horizontal subregion of image).
14971497 /// </summary>
1498- /// <param name="offset ">The X offset from origin.</param>
1498+ /// <param name="x ">The X offset from origin.</param>
14991499 /// <param name="width">The width of the part to chop horizontally.</param>
15001500 /// <exception cref="MagickException">Thrown when an error is raised by ImageMagick.</exception>
1501- public void ChopHorizontal ( int offset , uint width )
1501+ public void ChopHorizontal ( int x , uint width )
15021502 {
15031503 using var mutator = new Mutator ( _nativeInstance ) ;
1504- mutator . ChopHorizontal ( offset , width ) ;
1504+ mutator . ChopHorizontal ( x , width ) ;
15051505 }
15061506
15071507 /// <summary>
15081508 /// Chop image (remove horizontal subregion of image).
15091509 /// </summary>
1510- /// <param name="offset ">The Y offset from origin.</param>
1510+ /// <param name="y ">The Y offset from origin.</param>
15111511 /// <param name="height">The height of the part to chop vertically.</param>
15121512 /// <exception cref="MagickException">Thrown when an error is raised by ImageMagick.</exception>
1513- public void ChopVertical ( int offset , uint height )
1513+ public void ChopVertical ( int y , uint height )
15141514 {
15151515 using var mutator = new Mutator ( _nativeInstance ) ;
1516- mutator . ChopVertical ( offset , height ) ;
1516+ mutator . ChopVertical ( y , height ) ;
15171517 }
15181518
15191519 /// <summary>
0 commit comments