aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-04-05 09:47:20 -0400
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-04-05 09:47:55 -0400
commit7be4b57fe7c1f5c7a84a6a8ed91cb49f388f2169 (patch)
tree69a7dab7228aafe3e5966ba9644e15c8b33d6329
parent4699ec6417ba31f5f6ac9058ef108c779aabd0e1 (diff)
Fix documentation for ExtraRuleType enum values
-rw-r--r--Emby.Naming/Video/ExtraRuleType.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Naming/Video/ExtraRuleType.cs b/Emby.Naming/Video/ExtraRuleType.cs
index 76872f3bc..e89876f4a 100644
--- a/Emby.Naming/Video/ExtraRuleType.cs
+++ b/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,