@@ -36,7 +36,7 @@ public static IEnumerable<FileNodeBase> EnumerateFileNodes(this IFileProvider pr
3636 provider . GetDirectory ( path ) . EnumerateFileNodes ( ) ;
3737
3838 /// <summary>
39- /// Returns an enumerable collection of files in the directory at the specified path that match the given glob pattern.
39+ /// Returns an enumerable collection of files in the specified directory that match the given glob pattern.
4040 /// </summary>
4141 /// <param name="provider">The file provider to use.</param>
4242 /// <param name="path">The path to the directory to search.</param>
@@ -97,7 +97,7 @@ public static IEnumerable<FileNode> EnumerateFiles(this IFileProvider provider,
9797 provider . GetDirectory ( path ) . EnumerateFiles ( pattern , exclude ) ;
9898
9999 /// <summary>
100- /// Returns an enumerable collection of files in the directory at the specified path that match any of the given glob patterns.
100+ /// Returns an enumerable collection of files in the specified directory that match any of the given glob patterns.
101101 /// </summary>
102102 /// <param name="provider">The file provider to use.</param>
103103 /// <param name="path">The path to the directory to search.</param>
@@ -158,7 +158,7 @@ public static IEnumerable<FileNode> EnumerateFiles(this IFileProvider provider,
158158 provider . GetDirectory ( path ) . EnumerateFiles ( patterns , excludes ) ;
159159
160160 /// <summary>
161- /// Returns an enumerable collection of directories in the directory at the specified path that match the given glob pattern.
161+ /// Returns an enumerable collection of directories in the specified directory that match the given glob pattern.
162162 /// </summary>
163163 /// <param name="provider">The file provider to use.</param>
164164 /// <param name="path">The path to the directory to search.</param>
@@ -219,7 +219,7 @@ public static IEnumerable<DirectoryNode> EnumerateDirectories(this IFileProvider
219219 provider . GetDirectory ( path ) . EnumerateDirectories ( pattern , exclude ) ;
220220
221221 /// <summary>
222- /// Returns an enumerable collection of directories in the directory at the specified path that match any of the given glob patterns.
222+ /// Returns an enumerable collection of directories in the specified directory that match any of the given glob patterns.
223223 /// </summary>
224224 /// <param name="provider">The file provider to use.</param>
225225 /// <param name="path">The path to the directory to search.</param>
@@ -280,7 +280,7 @@ public static IEnumerable<DirectoryNode> EnumerateDirectories(this IFileProvider
280280 provider . GetDirectory ( path ) . EnumerateDirectories ( patterns , excludes ) ;
281281
282282 /// <summary>
283- /// Returns an enumerable collection of file nodes in the directory at the specified path that match the given glob pattern.
283+ /// Returns an enumerable collection of file nodes in the specified directory that match the given glob pattern.
284284 /// </summary>
285285 /// <param name="provider">The file provider to use.</param>
286286 /// <param name="path">The path to the directory to search.</param>
@@ -341,7 +341,7 @@ public static IEnumerable<FileNodeBase> EnumerateFileNodes(this IFileProvider pr
341341 provider . GetDirectory ( path ) . EnumerateFileNodes ( pattern , exclude ) ;
342342
343343 /// <summary>
344- /// Returns an enumerable collection of file nodes in the directory at the specified path that match any of the given glob patterns.
344+ /// Returns an enumerable collection of file nodes in the specified directory that match any of the provided glob patterns.
345345 /// </summary>
346346 /// <param name="provider">The file provider to use.</param>
347347 /// <param name="path">The path of the directory from which to retrieve file nodes.</param>
0 commit comments