Fix comment capitalisation

This commit is contained in:
pcjones 2023-09-30 11:49:47 +02:00
parent b983f84670
commit 5abd9eb1ce
1 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ namespace NzbDrone.Core.DecisionEngine
}
else
{
// use original sorting logic if the releases are not equal
// Use original sorting logic if the releases are not equal
return CompareBy(x.RemoteEpisode, y.RemoteEpisode, remoteEpisode =>
{
var ageHours = remoteEpisode.Release.AgeHours;
@ -242,7 +242,7 @@ namespace NzbDrone.Core.DecisionEngine
private string SanitizeReleaseName(string releaseName)
{
// some indexers add strings like -xpost to the release which can be ignored (it's not a release group)
// Some indexers add strings like -xpost to the release which can be ignored
foreach (var ignoredString in IgnoredStrings)
{