diff --git a/src/ImageSharp/Common/Extensions/EnumerableExtensions.cs b/src/ImageSharp/Common/Extensions/EnumerableExtensions.cs
index e97a2eaed0..e28db7cff1 100644
--- a/src/ImageSharp/Common/Extensions/EnumerableExtensions.cs
+++ b/src/ImageSharp/Common/Extensions/EnumerableExtensions.cs
@@ -45,7 +45,7 @@ namespace SixLabors.ImageSharp.Common
/// The start index, inclusive.
///
///
- /// A method that has one parameter and returns a calculating the end index
+ /// A method that has one parameter and returns a calculating the end index.
///
///
/// The incremental step.
@@ -65,7 +65,7 @@ namespace SixLabors.ImageSharp.Common
/// The start index, inclusive.
///
///
- /// A method that has one parameter and returns a calculating the end index
+ /// A method that has one parameter and returns a calculating the end index.
///
///
/// The incremental step.
diff --git a/src/ImageSharp/Formats/Bmp/BmpImageFormatDetector.cs b/src/ImageSharp/Formats/Bmp/BmpImageFormatDetector.cs
index 6a740d47d1..ea887d9bf9 100644
--- a/src/ImageSharp/Formats/Bmp/BmpImageFormatDetector.cs
+++ b/src/ImageSharp/Formats/Bmp/BmpImageFormatDetector.cs
@@ -6,7 +6,7 @@ using System;
namespace SixLabors.ImageSharp.Formats.Bmp
{
///
- /// Detects bmp file headers
+ /// Detects bmp file headers.
///
public sealed class BmpImageFormatDetector : IImageFormatDetector
{
diff --git a/src/ImageSharp/Formats/Gif/IGifDecoderOptions.cs b/src/ImageSharp/Formats/Gif/IGifDecoderOptions.cs
index 42c202a3d9..0c59163cce 100644
--- a/src/ImageSharp/Formats/Gif/IGifDecoderOptions.cs
+++ b/src/ImageSharp/Formats/Gif/IGifDecoderOptions.cs
@@ -22,7 +22,7 @@ namespace SixLabors.ImageSharp.Formats.Gif
Encoding TextEncoding { get; }
///
- /// Gets the decoding mode for multi-frame images
+ /// Gets the decoding mode for multi-frame images.
///
FrameDecodingMode DecodingMode { get; }
}
diff --git a/src/ImageSharp/Formats/Jpeg/Components/Decoder/AdobeMarker.cs b/src/ImageSharp/Formats/Jpeg/Components/Decoder/AdobeMarker.cs
index 43de39ac78..e34af98251 100644
--- a/src/ImageSharp/Formats/Jpeg/Components/Decoder/AdobeMarker.cs
+++ b/src/ImageSharp/Formats/Jpeg/Components/Decoder/AdobeMarker.cs
@@ -40,7 +40,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Decoder
///
/// Gets the horizontal downsampling hint used for DCT encoding
/// 0x0 : (none - Chop)
- /// Bit 15 : Encoded with Blend=1 downsampling
+ /// Bit 15 : Encoded with Blend=1 downsampling.
///
public short APP14Flags0 { get; }
@@ -63,7 +63,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Decoder
/// Converts the specified byte array representation of an Adobe marker to its equivalent and
/// returns a value that indicates whether the conversion succeeded.
///
- /// The byte array containing metadata to parse
+ /// The byte array containing metadata to parse.
/// The marker to return.
public static bool TryParse(byte[] bytes, out AdobeMarker marker)
{
diff --git a/src/ImageSharp/Primitives/ValueSize.cs b/src/ImageSharp/Primitives/ValueSize.cs
index e5e086540d..a0f9d133b2 100644
--- a/src/ImageSharp/Primitives/ValueSize.cs
+++ b/src/ImageSharp/Primitives/ValueSize.cs
@@ -28,22 +28,22 @@ namespace SixLabors.ImageSharp.Primitives
}
///
- /// Enumerates the different value types
+ /// Enumerates the different value types.
///
public enum ValueSizeType
{
///
- /// The value is the final return value
+ /// The value is the final return value.
///
Absolute,
///
- /// The value is a percentage of the image width
+ /// The value is a percentage of the image width.
///
PercentageOfWidth,
///
- /// The value is a percentage of the images height
+ /// The value is a percentage of the images height.
///
PercentageOfHeight
}
@@ -59,7 +59,7 @@ namespace SixLabors.ImageSharp.Primitives
public ValueSizeType Type { get; }
///
- /// Implicitly converts a float into an absolute value
+ /// Implicitly converts a float into an absolute value.
///
/// the value to use as the absolute figure.
public static implicit operator ValueSize(float f)
@@ -115,10 +115,7 @@ namespace SixLabors.ImageSharp.Primitives
}
///
- public override string ToString()
- {
- return $"{this.Value} - {this.Type}";
- }
+ public override string ToString() => $"{this.Value} - {this.Type}";
///
public override bool Equals(object obj)