Browse Source

update summary docs

Signed-off-by: Cody Engel <cengel815@gmail.com>
Cody Engel 2 months ago
parent
commit
2508e8349b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Emby.Naming/TV/SeriesResolver.cs

+ 2 - 2
Emby.Naming/TV/SeriesResolver.cs

@@ -18,8 +18,8 @@ namespace Emby.Naming.TV
         private static partial Regex SeriesNameRegex();
         private static partial Regex SeriesNameRegex();
 
 
         /// <summary>
         /// <summary>
-        /// Regex that matches titles with year in parentheses, optionally preceded by a minus sign.
-        /// Captures the title (which may be numeric) before the year.
+        /// Regex that matches titles with year in parentheses. Captures the title (which may be
+        /// numeric) before the year, i.e. turns "1923 (2022)" into "1923".
         /// </summary>
         /// </summary>
         [GeneratedRegex(@"(?<title>.+?)\s*\(\d{4}\)")]
         [GeneratedRegex(@"(?<title>.+?)\s*\(\d{4}\)")]
         private static partial Regex TitleWithYearRegex();
         private static partial Regex TitleWithYearRegex();