diff --git a/src/ImageProcessor/Extensions/ImageInfo.cs b/src/ImageProcessor/Extensions/ImageInfo.cs
index 720eb5a20..ebb55c631 100644
--- a/src/ImageProcessor/Extensions/ImageInfo.cs
+++ b/src/ImageProcessor/Extensions/ImageInfo.cs
@@ -16,7 +16,7 @@ namespace ImageProcessor.Extensions
///
/// Provides information about an image.
- ///
+ ///
///
public class ImageInfo
{
diff --git a/src/ImageProcessor/Imaging/ExifPropertyTag.cs b/src/ImageProcessor/Imaging/ExifPropertyTag.cs
index 3af48741d..3e714d03c 100644
--- a/src/ImageProcessor/Imaging/ExifPropertyTag.cs
+++ b/src/ImageProcessor/Imaging/ExifPropertyTag.cs
@@ -12,7 +12,7 @@ namespace ImageProcessor.Imaging
{
///
/// The following enum gives descriptions of the property items supported by Windows GDI+.
- ///
+ ///
/// TODO: Add more XML descriptions.
///
public enum ExifPropertyTag
diff --git a/src/ImageProcessor/Imaging/ExifPropertyTagType.cs b/src/ImageProcessor/Imaging/ExifPropertyTagType.cs
index 2c3a1b352..63f9bc3a4 100644
--- a/src/ImageProcessor/Imaging/ExifPropertyTagType.cs
+++ b/src/ImageProcessor/Imaging/ExifPropertyTagType.cs
@@ -13,7 +13,7 @@ namespace ImageProcessor.Imaging
{
///
/// Specifies the data type of the values stored in the value data member of that same PropertyItem object.
- ///
+ ///
///
public enum ExifPropertyTagType : short
{
diff --git a/src/ImageProcessor/Imaging/GifEncoder.cs b/src/ImageProcessor/Imaging/GifEncoder.cs
index 20a8ba0f0..442b0a2d7 100644
--- a/src/ImageProcessor/Imaging/GifEncoder.cs
+++ b/src/ImageProcessor/Imaging/GifEncoder.cs
@@ -29,7 +29,7 @@ namespace ImageProcessor.Imaging
/// Always wire this up in a using block.
/// Disposing the encoder will complete the file.
/// Uses default .NET GIF encoding and adds animation headers.
- /// Adapted from
+ /// Adapted from
///
///
public class GifEncoder : IDisposable
diff --git a/src/ImageProcessor/Processors/Alpha.cs b/src/ImageProcessor/Processors/Alpha.cs
index 70ff57a65..61463a6ab 100644
--- a/src/ImageProcessor/Processors/Alpha.cs
+++ b/src/ImageProcessor/Processors/Alpha.cs
@@ -25,7 +25,7 @@ namespace ImageProcessor.Processors
{
///
/// The regular expression to search strings for.
- ///
+ ///
///
private static readonly Regex QueryRegex = new Regex(@"alpha=(?:100|[1-9]?[0-9])", RegexOptions.Compiled);
diff --git a/src/ImageProcessor/Processors/Brightness.cs b/src/ImageProcessor/Processors/Brightness.cs
index 6671ec373..914f15d0a 100644
--- a/src/ImageProcessor/Processors/Brightness.cs
+++ b/src/ImageProcessor/Processors/Brightness.cs
@@ -25,7 +25,7 @@ namespace ImageProcessor.Processors
{
///
/// The regular expression to search strings for.
- ///
+ ///
///
private static readonly Regex QueryRegex = new Regex(@"brightness=(-?(?:100)|-?([1-9]?[0-9]))", RegexOptions.Compiled);
diff --git a/src/ImageProcessor/Processors/Contrast.cs b/src/ImageProcessor/Processors/Contrast.cs
index 4d057d6d5..545a4b0c2 100644
--- a/src/ImageProcessor/Processors/Contrast.cs
+++ b/src/ImageProcessor/Processors/Contrast.cs
@@ -25,7 +25,7 @@ namespace ImageProcessor.Processors
{
///
/// The regular expression to search strings for.
- ///
+ ///
///
private static readonly Regex QueryRegex = new Regex(@"contrast=(-?(?:100)|-?([1-9]?[0-9]))", RegexOptions.Compiled);
diff --git a/src/ImageProcessor/Processors/Crop.cs b/src/ImageProcessor/Processors/Crop.cs
index fa4f20ccf..b2ff1493e 100644
--- a/src/ImageProcessor/Processors/Crop.cs
+++ b/src/ImageProcessor/Processors/Crop.cs
@@ -30,7 +30,7 @@ namespace ImageProcessor.Processors
{
///
/// The regular expression to search strings for.
- ///
+ ///
///
private static readonly Regex QueryRegex = new Regex(@"crop=\d+(.\d+)?[,-]\d+(.\d+)?[,-]\d+(.\d+)?[,-]\d+(.\d+)?|cropmode=(pixels|percent)", RegexOptions.Compiled);
diff --git a/src/ImageProcessor/Processors/Flip.cs b/src/ImageProcessor/Processors/Flip.cs
index 81b3cd602..c845ba281 100644
--- a/src/ImageProcessor/Processors/Flip.cs
+++ b/src/ImageProcessor/Processors/Flip.cs
@@ -23,7 +23,7 @@ namespace ImageProcessor.Processors
{
///
/// The regular expression to search strings for.
- ///
+ ///
///
private static readonly Regex QueryRegex = new Regex(@"flip=(horizontal|vertical|both)", RegexOptions.Compiled);
diff --git a/src/ImageProcessor/Processors/Rotate.cs b/src/ImageProcessor/Processors/Rotate.cs
index da3e85e63..0547fad06 100644
--- a/src/ImageProcessor/Processors/Rotate.cs
+++ b/src/ImageProcessor/Processors/Rotate.cs
@@ -184,7 +184,7 @@ namespace ImageProcessor.Processors
/// The background color to fill an image with.
/// The image rotated to the given angle at the given position.
///
- /// Based on
+ /// Based on
///
private Bitmap RotateImage(Image image, float rotateAtX, float rotateAtY, float angle, Color backgroundColor)
{
diff --git a/src/ImageProcessor/Processors/Saturation.cs b/src/ImageProcessor/Processors/Saturation.cs
index 268de2f4a..e3be5c312 100644
--- a/src/ImageProcessor/Processors/Saturation.cs
+++ b/src/ImageProcessor/Processors/Saturation.cs
@@ -23,13 +23,13 @@ namespace ImageProcessor.Processors
/// Encapsulates methods to change the saturation component of the image.
///
///
- ///
+ ///
///
public class Saturation : IGraphicsProcessor
{
///
/// The regular expression to search strings for.
- ///
+ ///
///
private static readonly Regex QueryRegex = new Regex(@"saturation=(-?(?:100)|-?([1-9]?[0-9]))", RegexOptions.Compiled);