rename BuildVar module to BuilderQQ

This commit is contained in:
Rhiannon Morris 2020-07-15 21:31:46 +02:00
parent 490a20c85c
commit 75b91f43b4
4 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
{-# LANGUAGE TemplateHaskell #-}
module BuildVar (b) where
module BuilderQQ (b) where
import Data.Char (isLower, isSpace, isDigit, isAlphaNum)
import Language.Haskell.TH

View File

@ -1,6 +1,6 @@
module Depend where
import BuildVar
import BuilderQQ
import Info hiding (Text)
import Data.Maybe (fromMaybe)

View File

@ -2,7 +2,7 @@ module SinglePage (make) where
import Records ()
import Info hiding (Text)
import BuildVar
import BuilderQQ
import Control.Exception
import qualified Data.Text as Strict

View File

@ -15,7 +15,7 @@ executable make-pages
main-is: Main.hs
other-modules:
Records,
BuildVar,
BuilderQQ,
Info,
SinglePage,
Depend,