diff --git a/src/ImageSharp/ImageFrame{TPixel}.cs b/src/ImageSharp/ImageFrame{TPixel}.cs
index d5045a599..03d37b2e7 100644
--- a/src/ImageSharp/ImageFrame{TPixel}.cs
+++ b/src/ImageSharp/ImageFrame{TPixel}.cs
@@ -148,6 +148,7 @@ namespace SixLabors.ImageSharp
/// The x-coordinate of the pixel. Must be greater than or equal to zero and less than the width of the image.
/// The y-coordinate of the pixel. Must be greater than or equal to zero and less than the height of the image.
/// The at the specified position.
+ /// Thrown when the provided (x,y) coordinates are outside the image boundary.
public TPixel this[int x, int y]
{
[MethodImpl(InliningOptions.ShortMethod)]
diff --git a/src/ImageSharp/Image{TPixel}.cs b/src/ImageSharp/Image{TPixel}.cs
index 9199696af..83be52dd6 100644
--- a/src/ImageSharp/Image{TPixel}.cs
+++ b/src/ImageSharp/Image{TPixel}.cs
@@ -145,6 +145,7 @@ namespace SixLabors.ImageSharp
/// The x-coordinate of the pixel. Must be greater than or equal to zero and less than the width of the image.
/// The y-coordinate of the pixel. Must be greater than or equal to zero and less than the height of the image.
/// The at the specified position.
+ /// Thrown when the provided (x,y) coordinates are outside the image boundary.
public TPixel this[int x, int y]
{
[MethodImpl(InliningOptions.ShortMethod)]