From 1c7f2ad29e2dfe8777619041d43aa6da52dac04a Mon Sep 17 00:00:00 2001 From: Keivan Beigi Date: Tue, 2 Sep 2014 15:12:13 -0700 Subject: [PATCH] spelling --- src/NzbDrone.Core/Parser/SceneChecker.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/NzbDrone.Core/Parser/SceneChecker.cs b/src/NzbDrone.Core/Parser/SceneChecker.cs index 1ecfc3ef2..75fa4595c 100644 --- a/src/NzbDrone.Core/Parser/SceneChecker.cs +++ b/src/NzbDrone.Core/Parser/SceneChecker.cs @@ -3,7 +3,7 @@ public static class SceneChecker { //This method should prefer false negatives over false positives. - //It's better not to use a title that might be seen that to use one that isn't scene + //It's better not to use a title that might be scene than to use one that isn't scene public static bool IsSceneTitle(string title) { if (!title.Contains(".")) return false; @@ -17,7 +17,5 @@ return true; } - } - }