diff --git a/src/ImageSharp/Image.FromFile.cs b/src/ImageSharp/Image.FromFile.cs index 24a737493c..884acf7a40 100644 --- a/src/ImageSharp/Image.FromFile.cs +++ b/src/ImageSharp/Image.FromFile.cs @@ -81,7 +81,7 @@ public static async Task DetectFormatAsync( /// A return value indicates whether the operation succeeded. /// /// The image file to open and to read the header from. - /// if the information can be read; otherwise, + /// The . /// The path is null. /// The file stream is not readable or the image format is not supported. /// The encoded image contains invalid content. diff --git a/src/ImageSharp/Image.FromStream.cs b/src/ImageSharp/Image.FromStream.cs index 1748ca00e0..63f9e64f6c 100644 --- a/src/ImageSharp/Image.FromStream.cs +++ b/src/ImageSharp/Image.FromStream.cs @@ -29,7 +29,7 @@ public static IImageFormat DetectFormat(Stream stream) /// /// The general decoder options. /// The image stream to read the header from. - /// if a match is found; otherwise, + /// The . /// The options are null. /// The stream is null. /// The stream is not readable or the image format is not supported. @@ -79,7 +79,7 @@ public static Task DetectFormatAsync( /// Reads the raw image information from the specified stream without fully decoding it. /// /// The image stream to read the header from. - /// if the information can be read; otherwise, + /// The . /// The stream is null. /// The stream is not readable or the image format is not supported. /// The encoded image contains invalid content.