diff options
Diffstat (limited to 'Utility')
-rw-r--r-- | Utility/Directory.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Directory.hs b/Utility/Directory.hs index 2e3508e8d..6caee7efa 100644 --- a/Utility/Directory.hs +++ b/Utility/Directory.hs @@ -37,7 +37,7 @@ dirContents d = map (d </>) . filter (not . dirCruft) <$> getDirectoryContents d {- Gets files in a directory, and then its subdirectories, recursively, - and lazily. - - - Follows symlinks to other subdirectories. + - Does not follow symlinks to other subdirectories. - - When the directory does not exist, no exception is thrown, - instead, [] is returned. -} |