diff --git a/src/ImageSharp/Image/ImageProperty.cs b/src/ImageSharp/Image/ImageProperty.cs
index a4293bc6ef..7fda749e95 100644
--- a/src/ImageSharp/Image/ImageProperty.cs
+++ b/src/ImageSharp/Image/ImageProperty.cs
@@ -38,7 +38,7 @@ namespace ImageSharp
public string Name { get; }
///
- /// The value of this .
+ /// Gets the value of this .
///
public string Value { get; }
diff --git a/src/ImageSharp/Numerics/Rectangle.cs b/src/ImageSharp/Numerics/Rectangle.cs
index 9ae1ba5075..fb623c2eb1 100644
--- a/src/ImageSharp/Numerics/Rectangle.cs
+++ b/src/ImageSharp/Numerics/Rectangle.cs
@@ -64,7 +64,7 @@ namespace ImageSharp
}
///
- /// The x-coordinate of this .
+ /// Gets or sets the x-coordinate of this .
///
public int X
{
@@ -80,7 +80,7 @@ namespace ImageSharp
}
///
- /// The y-coordinate of this .
+ /// Gets or sets the y-coordinate of this .
///
public int Y
{
@@ -96,7 +96,7 @@ namespace ImageSharp
}
///
- /// The width of this .
+ /// Gets or sets the width of this .
///
public int Width
{
@@ -112,7 +112,7 @@ namespace ImageSharp
}
///
- /// The height of this .
+ /// Gets or sets the height of this .
///
public int Height
{
diff --git a/src/ImageSharp/Profiles/Exif/ExifValue.cs b/src/ImageSharp/Profiles/Exif/ExifValue.cs
index bd0f2bede6..db62be4c23 100644
--- a/src/ImageSharp/Profiles/Exif/ExifValue.cs
+++ b/src/ImageSharp/Profiles/Exif/ExifValue.cs
@@ -42,7 +42,7 @@ namespace ImageSharp
}
///
- /// The data type of the exif value.
+ /// Gets the data type of the exif value.
///
public ExifDataType DataType
{
@@ -50,7 +50,7 @@ namespace ImageSharp
}
///
- /// Returns true if the value is an array.
+ /// Gets a value indicating whether the value is an array.
///
public bool IsArray
{
@@ -58,7 +58,7 @@ namespace ImageSharp
}
///
- /// The tag of the exif value.
+ /// Gets the tag of the exif value.
///
public ExifTag Tag
{
@@ -66,7 +66,7 @@ namespace ImageSharp
}
///
- /// The value.
+ /// Gets or sets the value.
///
public object Value
{