summaryrefslogtreecommitdiff
path: root/src/Hakyll/Core/Compiler
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2011-01-03 22:13:04 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2011-01-03 22:13:04 +0100
commit2ceb5f59d0728c380ad7b4f319a9282741e715b9 (patch)
treeefac70b64e1f18a308ccf3b1ba23c8b55a98f05b /src/Hakyll/Core/Compiler
parent40c75767d4f926de4ce2fd3db688e46987fb8b72 (diff)
downloadhakyll-2ceb5f59d0728c380ad7b4f319a9282741e715b9.tar.gz
Avoid looking at up-to-date items at all
Diffstat (limited to 'src/Hakyll/Core/Compiler')
-rw-r--r--src/Hakyll/Core/Compiler/Internal.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Hakyll/Core/Compiler/Internal.hs b/src/Hakyll/Core/Compiler/Internal.hs
index a4dd695..262cda0 100644
--- a/src/Hakyll/Core/Compiler/Internal.hs
+++ b/src/Hakyll/Core/Compiler/Internal.hs
@@ -32,7 +32,7 @@ type Dependencies = Set Identifier
-- | A lookup with which we can get dependencies
--
-type DependencyLookup = Identifier -> CompiledItem
+type DependencyLookup = Identifier -> Maybe CompiledItem
-- | Environment in which a compiler runs
--