diff --git a/src/ImageSharp/Formats/Bmp/BmpConstants.cs b/src/ImageSharp/Formats/Bmp/BmpConstants.cs index f2454f24d..43b6dd900 100644 --- a/src/ImageSharp/Formats/Bmp/BmpConstants.cs +++ b/src/ImageSharp/Formats/Bmp/BmpConstants.cs @@ -18,7 +18,7 @@ namespace ImageSharp.Formats public static readonly IEnumerable MimeTypes = new[] { "image/bmp", "image/x-windows-bmp" }; /// - /// The list of mimetypes that equate to a bmp + /// The list of file extensions that equate to a bmp /// public static readonly IEnumerable FileExtensions = new[] { "bm", "bmp", "dip" }; } diff --git a/src/ImageSharp/Formats/Gif/GifConstants.cs b/src/ImageSharp/Formats/Gif/GifConstants.cs index 5c4d806d7..e4d3be3d6 100644 --- a/src/ImageSharp/Formats/Gif/GifConstants.cs +++ b/src/ImageSharp/Formats/Gif/GifConstants.cs @@ -99,7 +99,7 @@ namespace ImageSharp.Formats public static readonly IEnumerable MimeTypes = new[] { "image/gif" }; /// - /// The list of mimetypes that equate to a bmp + /// The list of file extensions that equate to a bmp /// public static readonly IEnumerable FileExtensions = new[] { "gif" }; } diff --git a/src/ImageSharp/Formats/Jpeg/JpegConstants.cs b/src/ImageSharp/Formats/Jpeg/JpegConstants.cs index 959813611..27ba4190e 100644 --- a/src/ImageSharp/Formats/Jpeg/JpegConstants.cs +++ b/src/ImageSharp/Formats/Jpeg/JpegConstants.cs @@ -23,7 +23,7 @@ namespace ImageSharp.Formats public static readonly IEnumerable MimeTypes = new[] { "image/jpeg", "image/pjpeg" }; /// - /// The list of mimetypes that equate to a jpeg + /// The list of file extensions that equate to a jpeg /// public static readonly IEnumerable FileExtensions = new[] { "jpg", "jpeg", "jfif" }; diff --git a/src/ImageSharp/Formats/Png/PngConstants.cs b/src/ImageSharp/Formats/Png/PngConstants.cs index b44ab7663..8528e93ee 100644 --- a/src/ImageSharp/Formats/Png/PngConstants.cs +++ b/src/ImageSharp/Formats/Png/PngConstants.cs @@ -23,7 +23,7 @@ namespace ImageSharp.Formats public static readonly IEnumerable MimeTypes = new[] { "image/png" }; /// - /// The list of mimetypes that equate to a jpeg + /// The list of file extensions that equate to a jpeg /// public static readonly IEnumerable FileExtensions = new[] { "png" }; } diff --git a/tests/ImageSharp.Tests/ConfigurationTests.cs b/tests/ImageSharp.Tests/ConfigurationTests.cs index 64b96168a..aa09cf816 100644 --- a/tests/ImageSharp.Tests/ConfigurationTests.cs +++ b/tests/ImageSharp.Tests/ConfigurationTests.cs @@ -27,7 +27,7 @@ namespace ImageSharp.Tests public ConfigurationTests() { this.DefaultConfiguration = Configuration.CreateDefaultInstance(); - this.ConfigurationEmpty = Configuration.CreateDefaultInstance(); + this.ConfigurationEmpty = new Configuration(); } [Fact]