diff --git a/src/ImageSharp/Image/PixelAccessor{TColor}.cs b/src/ImageSharp/Image/PixelAccessor{TColor}.cs
index f9867a9089..991be5aec4 100644
--- a/src/ImageSharp/Image/PixelAccessor{TColor}.cs
+++ b/src/ImageSharp/Image/PixelAccessor{TColor}.cs
@@ -145,7 +145,7 @@ namespace ImageSharp
}
///
- /// Copied a row of pixels from the image.
+ /// Copy an area of pixels to the image.
///
/// The area.
/// The target row index.
@@ -161,7 +161,7 @@ namespace ImageSharp
}
///
- /// Copied an area of pixels to the image.
+ /// Copy pixels from the image to an area of pixels.
///
/// The area.
/// The source row index.
@@ -177,7 +177,8 @@ namespace ImageSharp
}
///
- /// Copied an area of pixels to the image and makes sure this is within the bounds of the image.
+ /// Copy pixels from the image to an area of pixels. This method will make sure that the pixels
+ /// that are copied are within the bounds of the image.
///
/// The area.
/// The source row index.
@@ -464,7 +465,7 @@ namespace ImageSharp
}
///
- /// Copied a row of pixels from the image
+ /// Copy an area of pixels to the image.
///
/// The area.
/// The target column index.
@@ -496,7 +497,7 @@ namespace ImageSharp
}
///
- /// Copied an area of pixels to the image.
+ /// Copy pixels from the image to an area of pixels.
///
/// The area.
/// The source column index.