소스 검색

Use the correct verbiage for documenting thrown exceptions

Mark Monteiro 5 년 전
부모
커밋
f7eef1aa7f
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      Jellyfin.Drawing.Skia/SkiaEncoder.cs

+ 3 - 3
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)