Skip to content

Commit

Permalink
EnumerateDirectories should be public
Browse files Browse the repository at this point in the history
  • Loading branch information
Sewer56 committed Oct 18, 2023
1 parent 7092b6b commit 1a9f237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NexusMods.Paths/AbsolutePath_IO.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public IEnumerable<AbsolutePath> EnumerateFiles(string pattern = "*", bool recur
=> FileSystem.EnumerateFiles(this, pattern, recursive);

/// <inheritdoc cref="IFileSystem.EnumerateDirectories"/>
IEnumerable<AbsolutePath> EnumerateDirectories(string pattern = "*", bool recursive = true) =>
public IEnumerable<AbsolutePath> EnumerateDirectories(string pattern = "*", bool recursive = true) =>
FileSystem.EnumerateDirectories(this, pattern, recursive);

/// <inheritdoc cref="IFileSystem.EnumerateFileEntries"/>
Expand Down

0 comments on commit 1a9f237

Please sign in to comment.