From 6f9e92d2226f4a5fdab126e8befd56bd355143a8 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 1 May 2022 21:03:48 -0700 Subject: [PATCH] Clean up interface comments --- BurnOutSharp/Interfaces/IPathCheck.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }