浏览代码

Fix documentation for ExtraRuleType enum values

Mark Monteiro 5 年之前
父节点
当前提交
7be4b57fe7
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Emby.Naming/Video/ExtraRuleType.cs

+ 2 - 2
Emby.Naming/Video/ExtraRuleType.cs

@@ -10,12 +10,12 @@ namespace Emby.Naming.Video
         Suffix = 0,
 
         /// <summary>
-        /// Match <see cref="ExtraRule.Token"/> against the file name.
+        /// Match <see cref="ExtraRule.Token"/> against the file name, excluding the file extension.
         /// </summary>
         Filename = 1,
 
         /// <summary>
-        /// Match <see cref="ExtraRule.Token"/> against the a regex.
+        /// Match <see cref="ExtraRule.Token"/> against the file name, including the file extension.
         /// </summary>
         Regex = 2,