diff --git a/src/Ramstack.FileProviders.Extensions/FileProviderExtensions.cs b/src/Ramstack.FileProviders.Extensions/FileProviderExtensions.cs index a726e0c..36e9049 100644 --- a/src/Ramstack.FileProviders.Extensions/FileProviderExtensions.cs +++ b/src/Ramstack.FileProviders.Extensions/FileProviderExtensions.cs @@ -135,8 +135,8 @@ public static ValueTask ReadAllBytesAsync(this IFileProvider provider, s /// /// Returns a directory with the specified path. /// - /// The file provider to retrieve the directory from. - /// The local path that identifies the directory. + /// The . + /// The path that identifies the directory. /// /// The representing the desired directory. /// @@ -151,8 +151,8 @@ public static DirectoryNode GetDirectory(this IFileProvider provider, string pat /// /// Returns a file with the specified path. /// - /// The file provider to retrieve the file from. - /// The local path that identifies the file. + /// The . + /// The path that identifies the file. /// /// The representing the desired file. /// diff --git a/src/Ramstack.FileProviders/ZipFileProvider.cs b/src/Ramstack.FileProviders/ZipFileProvider.cs index b9b895a..3dc3854 100644 --- a/src/Ramstack.FileProviders/ZipFileProvider.cs +++ b/src/Ramstack.FileProviders/ZipFileProvider.cs @@ -71,8 +71,8 @@ private static void Initialize(ZipArchive archive, Dictionary { foreach (var entry in archive.Entries) { - // Skip directories - // Directory entries are represented by a trailing slash in their names + // Skip directories. + // Directory entries are represented by a trailing slash in their names. // // Since we cannot rely on all archivers to represent directory entries within the archive, // it's simpler to assume their absence and disregard entries ending with a forward slash '/'