diff options
| -rw-r--r-- | Emby.Naming/Video/ExtraRuleType.cs | 4 |
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, |
