From e35d1e7db5ceebe87d0a40b71e96f00a00ce0caf Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Thu, 12 Jan 2023 23:42:16 +1000 Subject: [PATCH] Fix ImageFormatManager docs --- src/ImageSharp/Formats/ImageFormatManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ImageSharp/Formats/ImageFormatManager.cs b/src/ImageSharp/Formats/ImageFormatManager.cs index 3969693d6..5eeb1b812 100644 --- a/src/ImageSharp/Formats/ImageFormatManager.cs +++ b/src/ImageSharp/Formats/ImageFormatManager.cs @@ -96,7 +96,7 @@ public class ImageFormatManager /// When this method returns, contains the format that matches the given extension; /// otherwise, the default value for the type of the parameter. /// This parameter is passed uninitialized. - /// . + /// /// if a match is found; otherwise, public bool TryFindFormatByFileExtension(string extension, [NotNullWhen(true)] out IImageFormat? format) { @@ -121,7 +121,7 @@ public class ImageFormatManager /// When this method returns, contains the format that matches the given mime-type; /// otherwise, the default value for the type of the parameter. /// This parameter is passed uninitialized. - /// . + /// /// if a match is found; otherwise, public bool TryFindFormatByMimeType(string mimeType, [NotNullWhen(true)] out IImageFormat? format) {