aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Monteiro <mark.monteiro23@gmail.com>2019-12-14 15:47:35 +0100
committerMark Monteiro <mark.monteiro23@gmail.com>2019-12-14 15:47:35 +0100
commitf7eef1aa7f4439d4a4b9b465579927256f332897 (patch)
tree871e21b0344c354437b61c339431337cb99dbd5f
parentc1c1672d0fd8169bc35ec3bd50754083303a88bd (diff)
Use the correct verbiage for documenting thrown exceptions
-rw-r--r--Jellyfin.Drawing.Skia/SkiaEncoder.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Jellyfin.Drawing.Skia/SkiaEncoder.cs b/Jellyfin.Drawing.Skia/SkiaEncoder.cs
index fdca59b69..ee4194d70 100644
--- a/Jellyfin.Drawing.Skia/SkiaEncoder.cs
+++ b/Jellyfin.Drawing.Skia/SkiaEncoder.cs
@@ -205,9 +205,9 @@ namespace Jellyfin.Drawing.Skia
}
/// <inheritdoc />
- /// <exception cref="ArgumentNullException">If path is null.</exception>
- /// <exception cref="FileNotFoundException">If the path is not valid.</exception>
- /// <exception cref="SkiaCodecException">If the file at the specified path could not be used to generate a codec.</exception>
+ /// <exception cref="ArgumentNullException">The path is null.</exception>
+ /// <exception cref="FileNotFoundException">The path is not valid.</exception>
+ /// <exception cref="SkiaCodecException">The file at the specified path could not be used to generate a codec.</exception>
public ImageDimensions GetImageSize(string path)
{
if (path == null)