3 files changed, 4 insertions(+), 4 deletions(-)
R src/Stylish/Style/{Index.hs => Selector/Index.hs}
R src/Stylish/Style/{Interpret.hs => Selector/Interpret.hs}
M test/Test.hs
R src/Stylish/Style/Index.hs => src/Stylish/Style/Selector/Index.hs +1 -1
@@ 1,5 1,5 @@
{-# LANGUAGE OverloadedStrings #-}
-module Stylish.Style.Index (
+module Stylish.Style.Selector.Index (
StyleIndex(..), styleIndex,
rulesForElement
) where
R src/Stylish/Style/Interpret.hs => src/Stylish/Style/Selector/Interpret.hs +1 -1
@@ 1,5 1,5 @@
{-# LANGUAGE OverloadedStrings #-}
-module Stylish.Style.Interpret(
+module Stylish.Style.Selector.Interpret(
compile, SelectorFunc(..)
) where
M test/Test.hs => test/Test.hs +2 -2
@@ 6,9 6,9 @@ import Test.Hspec.QuickCheck
import Data.CSS.Syntax.Tokens
import Stylish.Parse
-import Stylish.Style.Index
+import Stylish.Style.Selector.Index
import Stylish.Element
-import Stylish.Style.Interpret
+import Stylish.Style.Selector.Interpret
main = hspec spec