diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Hakyll/File.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Hakyll/File.hs b/src/Text/Hakyll/File.hs index e138312..5f5e58b 100644 --- a/src/Text/Hakyll/File.hs +++ b/src/Text/Hakyll/File.hs @@ -51,7 +51,7 @@ getRecursiveContents topdir = do directory :: (FilePath -> IO ()) -> FilePath -> IO () directory action dir = getRecursiveContents dir >>= mapM_ action --- | Check is a cache file is still valid. +-- | Check if a cache file is still valid. isCacheValid :: FilePath -> [FilePath] -> IO Bool isCacheValid cache depends = doesFileExist cache >>= \exists -> if not exists then return False |