diff --git a/BurnOutSharp/Interfaces/IPathCheck.cs b/BurnOutSharp/Interfaces/IPathCheck.cs index 8b20c31d..94733f06 100644 --- a/BurnOutSharp/Interfaces/IPathCheck.cs +++ b/BurnOutSharp/Interfaces/IPathCheck.cs @@ -10,14 +10,14 @@ namespace BurnOutSharp.Interfaces /// /// Path to check for protection indicators /// Enumerable of strings representing files in a directory - /// This can do some limited content checking as well, but it's suggested to use IContentCheck instead, if possible + /// This can do some limited content checking as well, but it's suggested to use a content check instead, if possible ConcurrentQueue CheckDirectoryPath(string path, IEnumerable files); /// /// Check a file path for protections based on path name /// /// Path to check for protection indicators - /// This can do some limited content checking as well, but it's suggested to use IContentCheck instead, if possible + /// This can do some limited content checking as well, but it's suggested to use a content check instead, if possible string CheckFilePath(string path); } }