From 23982be7de140d7971976308f0e7372f181e9b09 Mon Sep 17 00:00:00 2001 From: dirk Date: Mon, 7 Nov 2016 21:42:38 +0100 Subject: [PATCH] Documentation changes. --- src/ImageSharp/Image/ImageProperty.cs | 2 +- src/ImageSharp/Numerics/Rectangle.cs | 8 ++++---- src/ImageSharp/Profiles/Exif/ExifValue.cs | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) 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 {