diff --git a/src/NzbDrone.Core/Organizer/FileNameBuilder.cs b/src/NzbDrone.Core/Organizer/FileNameBuilder.cs index 2228e16e2..dd835e9f2 100644 --- a/src/NzbDrone.Core/Organizer/FileNameBuilder.cs +++ b/src/NzbDrone.Core/Organizer/FileNameBuilder.cs @@ -384,7 +384,7 @@ namespace NzbDrone.Core.Organizer return title.Substring(0, 1).ToUpper().RemoveAccent(); } - // try the second character if the first was non alphanumeric + // Try the second character if the first was non alphanumeric if (char.IsLetterOrDigit(title[1])) { return title.Substring(1, 1).ToUpper().RemoveAccent();