diff --git a/src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs b/src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs
index ef9e76164..cb510ac05 100644
--- a/src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs
+++ b/src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs
@@ -149,7 +149,7 @@ namespace SixLabors.ImageSharp.Formats.Bmp
this.ReadImageHeaders(stream, out _, out _);
return new ImageInfo(new PixelTypeInfo(this.infoHeader.BitsPerPixel), this.infoHeader.Width, this.infoHeader.Height, new ImageMetaData());
}
-
+
///
/// Returns the y- value based on the given height.
///
diff --git a/src/ImageSharp/Formats/Gif/GifDecoderCore.cs b/src/ImageSharp/Formats/Gif/GifDecoderCore.cs
index dbca49f06..257274c92 100644
--- a/src/ImageSharp/Formats/Gif/GifDecoderCore.cs
+++ b/src/ImageSharp/Formats/Gif/GifDecoderCore.cs
@@ -186,7 +186,7 @@ namespace SixLabors.ImageSharp.Formats.Gif
if (imageDescriptor.LocalColorTableFlag)
{
int length = imageDescriptor.LocalColorTableSize * 3;
-
+
// Skip local color table block
this.Skip(length);
}
@@ -200,7 +200,7 @@ namespace SixLabors.ImageSharp.Formats.Gif
switch (label)
{
case GifConstants.GraphicControlLabel:
-
+
// Skip graphic control extension block
this.Skip(0);
break;
diff --git a/src/ImageSharp/Formats/Gif/Sections/GifLogicalScreenDescriptor.cs b/src/ImageSharp/Formats/Gif/Sections/GifLogicalScreenDescriptor.cs
index 9fea5b112..05f232a4b 100644
--- a/src/ImageSharp/Formats/Gif/Sections/GifLogicalScreenDescriptor.cs
+++ b/src/ImageSharp/Formats/Gif/Sections/GifLogicalScreenDescriptor.cs
@@ -21,7 +21,7 @@ namespace SixLabors.ImageSharp.Formats.Gif
/// rendered in the displaying device.
///
public short Height { get; set; }
-
+
///
/// Gets or sets the color depth, in number of bits per pixel.
///
diff --git a/src/ImageSharp/Formats/Jpeg/GolangPort/OrigJpegDecoderCore.cs b/src/ImageSharp/Formats/Jpeg/GolangPort/OrigJpegDecoderCore.cs
index b7cad3281..ef7a4234f 100644
--- a/src/ImageSharp/Formats/Jpeg/GolangPort/OrigJpegDecoderCore.cs
+++ b/src/ImageSharp/Formats/Jpeg/GolangPort/OrigJpegDecoderCore.cs
@@ -131,7 +131,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.GolangPort
/// Gets the color depth, in number of bits per pixel.
///
public int BitsPerPixel => this.ComponentCount * SupportedPrecision;
-
+
///
/// Gets the image height
///
diff --git a/src/ImageSharp/Image/ImageInfo.cs b/src/ImageSharp/Image/ImageInfo.cs
index 11dcc3e75..0d8daaf1a 100644
--- a/src/ImageSharp/Image/ImageInfo.cs
+++ b/src/ImageSharp/Image/ImageInfo.cs
@@ -12,7 +12,7 @@ namespace SixLabors.ImageSharp
this.Height = height;
this.MetaData = metaData;
}
-
+
public PixelTypeInfo PixelType { get; }
public int Width { get; }
diff --git a/src/ImageSharp/Image/Image{TPixel}.cs b/src/ImageSharp/Image/Image{TPixel}.cs
index 2d0448d08..9b20e3dfa 100644
--- a/src/ImageSharp/Image/Image{TPixel}.cs
+++ b/src/ImageSharp/Image/Image{TPixel}.cs
@@ -88,7 +88,7 @@ namespace SixLabors.ImageSharp
/// Gets the pixel buffer.
///
Configuration IConfigurable.Configuration => this.configuration;
-
+
///
public PixelTypeInfo PixelType { get; }