Fix documentation for ExtraRuleType enum values

This commit is contained in:
Mark Monteiro 2020-04-05 09:47:20 -04:00
parent 4699ec6417
commit 7be4b57fe7

View File

@ -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,