diff --git a/src/ImageProcessor.Web/NET45/Caching/DiskCache.cs b/src/ImageProcessor.Web/NET45/Caching/DiskCache.cs
index 23612916b..f1cefc657 100644
--- a/src/ImageProcessor.Web/NET45/Caching/DiskCache.cs
+++ b/src/ImageProcessor.Web/NET45/Caching/DiskCache.cs
@@ -42,9 +42,9 @@ namespace ImageProcessor.Web.Caching
///
/// NTFS directories can handle up to 10,000 files in the directory before slowing down.
/// This will help us to ensure that don't go over that limit.
- ///
- ///
- ///
+ ///
+ ///
+ ///
///
private const int MaxFilesCount = 100;
diff --git a/src/ImageProcessor.Web/NET45/Configuration/ImageProcessingSection.cs b/src/ImageProcessor.Web/NET45/Configuration/ImageProcessingSection.cs
index 3942280f6..3332080b9 100644
--- a/src/ImageProcessor.Web/NET45/Configuration/ImageProcessingSection.cs
+++ b/src/ImageProcessor.Web/NET45/Configuration/ImageProcessingSection.cs
@@ -5,7 +5,7 @@
//
//
// Represents an image processing section within a configuration file.
-// Nested syntax adapted from
+// Nested syntax adapted from
//
// --------------------------------------------------------------------------------------------------------------------
@@ -21,7 +21,7 @@ namespace ImageProcessor.Web.Configuration
///
/// Represents an image processing section within a configuration file.
- /// Nested syntax adapted from
+ /// Nested syntax adapted from
///
public sealed class ImageProcessingSection : ConfigurationSection
{
diff --git a/src/ImageProcessor.Web/NET45/Configuration/ImageProcessorConfiguration.cs b/src/ImageProcessor.Web/NET45/Configuration/ImageProcessorConfiguration.cs
index e871a5c35..be4966966 100644
--- a/src/ImageProcessor.Web/NET45/Configuration/ImageProcessorConfiguration.cs
+++ b/src/ImageProcessor.Web/NET45/Configuration/ImageProcessorConfiguration.cs
@@ -5,7 +5,7 @@
//
//
// Encapsulates methods to allow the retrieval of ImageProcessor settings.
-//
+//
//
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Web.Configuration
@@ -24,7 +24,7 @@ namespace ImageProcessor.Web.Configuration
///
/// Encapsulates methods to allow the retrieval of ImageProcessor settings.
- ///
+ ///
///
public sealed class ImageProcessorConfiguration
{
diff --git a/src/ImageProcessor.Web/NET45/Helpers/RemoteFile.cs b/src/ImageProcessor.Web/NET45/Helpers/RemoteFile.cs
index 1fa38568c..6845d8453 100644
--- a/src/ImageProcessor.Web/NET45/Helpers/RemoteFile.cs
+++ b/src/ImageProcessor.Web/NET45/Helpers/RemoteFile.cs
@@ -40,7 +40,7 @@ namespace ImageProcessor.Web.Helpers
/// There shouldn't be any security issues there, as the internal WebRequest instance is still calling it remotely.
/// Any local files that shouldn't be accessed by this won't be allowed by the remote call.
///
- /// Adapted from BlogEngine.Net
+ /// Adapted from BlogEngine.Net
///
internal sealed class RemoteFile
{
diff --git a/src/ImageProcessor.Web/NET45/Processors/Crop.cs b/src/ImageProcessor.Web/NET45/Processors/Crop.cs
index 372d277c3..c621ebd1a 100644
--- a/src/ImageProcessor.Web/NET45/Processors/Crop.cs
+++ b/src/ImageProcessor.Web/NET45/Processors/Crop.cs
@@ -24,7 +24,7 @@ namespace ImageProcessor.Web.Processors
{
///
/// The regular expression to search strings for.
- ///
+ ///
///
private static readonly Regex QueryRegex = new Regex(@"(crop=|cropmode=)[^&]+", RegexOptions.Compiled);
diff --git a/src/ImageProcessor.Web/NET45/Processors/Saturation.cs b/src/ImageProcessor.Web/NET45/Processors/Saturation.cs
index 3a98bde7e..02a750ab1 100644
--- a/src/ImageProcessor.Web/NET45/Processors/Saturation.cs
+++ b/src/ImageProcessor.Web/NET45/Processors/Saturation.cs
@@ -18,7 +18,7 @@ namespace ImageProcessor.Web.Processors
/// Encapsulates methods to change the saturation component of the image.
///
///
- ///
+ ///
///
public class Saturation : IWebGraphicsProcessor
{
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..1d0d470f7 100644
--- a/src/ImageProcessor/Imaging/ExifPropertyTagType.cs
+++ b/src/ImageProcessor/Imaging/ExifPropertyTagType.cs
@@ -5,7 +5,7 @@
//
//
// Specifies the data type of the values stored in the value data member of that same PropertyItem object.
-//
+//
//
// --------------------------------------------------------------------------------------------------------------------
@@ -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/Formats/FormatUtilities.cs b/src/ImageProcessor/Imaging/Formats/FormatUtilities.cs
index a382e6449..36d2e3c07 100644
--- a/src/ImageProcessor/Imaging/Formats/FormatUtilities.cs
+++ b/src/ImageProcessor/Imaging/Formats/FormatUtilities.cs
@@ -27,7 +27,7 @@ namespace ImageProcessor.Imaging.Formats
{
///
/// Gets the correct from the given stream.
- ///
+ ///
///
///
/// The to read from.
diff --git a/src/ImageProcessor/Imaging/Formats/GifEncoder.cs b/src/ImageProcessor/Imaging/Formats/GifEncoder.cs
index d667f35f5..612a453bf 100644
--- a/src/ImageProcessor/Imaging/Formats/GifEncoder.cs
+++ b/src/ImageProcessor/Imaging/Formats/GifEncoder.cs
@@ -9,7 +9,7 @@
// 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
//
//
// --------------------------------------------------------------------------------------------------------------------
@@ -27,7 +27,7 @@ namespace ImageProcessor.Imaging.Formats
/// 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/Imaging/Formats/GifInfo.cs b/src/ImageProcessor/Imaging/Formats/GifInfo.cs
index c0b75bae3..2fdc1d715 100644
--- a/src/ImageProcessor/Imaging/Formats/GifInfo.cs
+++ b/src/ImageProcessor/Imaging/Formats/GifInfo.cs
@@ -5,7 +5,7 @@
//
//
// Provides information about an image.
-//
+//
//
// --------------------------------------------------------------------------------------------------------------------
@@ -16,7 +16,7 @@ namespace ImageProcessor.Imaging.Formats
///
/// Provides information about an image.
- ///
+ ///
///
public class GifInfo
{
diff --git a/src/ImageProcessor/Imaging/Formats/WebPFormat.cs b/src/ImageProcessor/Imaging/Formats/WebPFormat.cs
index 1617d37be..25b0205e3 100644
--- a/src/ImageProcessor/Imaging/Formats/WebPFormat.cs
+++ b/src/ImageProcessor/Imaging/Formats/WebPFormat.cs
@@ -5,7 +5,7 @@
//
//
// Provides the necessary information to support webp images.
-// Adapted from
+// Adapted from
// by Jose M. Piñeiro
//
// --------------------------------------------------------------------------------------------------------------------
@@ -25,7 +25,7 @@ namespace ImageProcessor.Imaging.Formats
///
/// Provides the necessary information to support webp images.
- /// Adapted from
+ /// Adapted from
/// by Jose M. Piñeiro
///
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "Reviewed. Suppression is OK here.")]
diff --git a/src/ImageProcessor/Processors/Rotate.cs b/src/ImageProcessor/Processors/Rotate.cs
index 70fabd1cc..2e5931dcc 100644
--- a/src/ImageProcessor/Processors/Rotate.cs
+++ b/src/ImageProcessor/Processors/Rotate.cs
@@ -100,7 +100,7 @@ namespace ImageProcessor.Processors
/// The angle in degrees at which to rotate the image.
/// 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)
{
diff --git a/src/ImageProcessor/Processors/Saturation.cs b/src/ImageProcessor/Processors/Saturation.cs
index b8d2a0819..341d287f3 100644
--- a/src/ImageProcessor/Processors/Saturation.cs
+++ b/src/ImageProcessor/Processors/Saturation.cs
@@ -21,7 +21,7 @@ namespace ImageProcessor.Processors
/// Encapsulates methods to change the saturation component of the image.
///
///
- ///
+ ///
///
public class Saturation : IGraphicsProcessor
{