From 9939708c66a1a9efe4721d8f7d367c847b7db2a2 Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Sun, 26 Dec 2010 13:21:27 +0100 Subject: Consistent naming: target vs compiler --- src/Hakyll/Core/Compiler.hs | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'src/Hakyll') diff --git a/src/Hakyll/Core/Compiler.hs b/src/Hakyll/Core/Compiler.hs index 70006e9..4e8b642 100644 --- a/src/Hakyll/Core/Compiler.hs +++ b/src/Hakyll/Core/Compiler.hs @@ -7,8 +7,7 @@ module Hakyll.Core.Compiler , Compiler , runCompiler , require - , target - , targetFromString + , compileFromString ) where import Control.Arrow (second) @@ -76,14 +75,9 @@ require identifier = do addDependency identifier return $ TargetM $ flip targetDependencyLookup identifier <$> ask --- | Construct a target inside a compiler --- -target :: TargetM a a -> Compiler a -target = return - -- | Construct a target from a string, this string being the content of the -- resource. -- -targetFromString :: (String -> TargetM a a) -- ^ Function to create the target - -> Compiler a -- ^ Resulting compiler -targetFromString = target . (getResourceString >>=) +compileFromString :: (String -> TargetM a a) -- ^ Function to create the target + -> Compiler a -- ^ Resulting compiler +compileFromString = return . (getResourceString >>=) -- cgit v1.2.3