summaryrefslogtreecommitdiff
path: root/src/Propellor/Property.hs
diff options
context:
space:
mode:
authorJoey Hess2014-10-08 13:14:21 -0400
committerJoey Hess2014-10-08 13:14:21 -0400
commit6a674c79d7d9f58c683695114bca2bdffe671bf7 (patch)
tree35de2e3335a794f6885a18d1a8976bc65f90f6e7 /src/Propellor/Property.hs
parent21117d5e2108fac5bca31e40049eee9368faee63 (diff)
fix some accidental uses of spaces, rather than tabs, for indentation
Diffstat (limited to 'src/Propellor/Property.hs')
-rw-r--r--src/Propellor/Property.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property.hs b/src/Propellor/Property.hs
index 68b6f6a9..ce825192 100644
--- a/src/Propellor/Property.hs
+++ b/src/Propellor/Property.hs
@@ -31,7 +31,7 @@ propertyList desc ps = Property desc (ensureProperties ps) (combineInfos ps)
combineProperties :: Desc -> [Property] -> Property
combineProperties desc ps = Property desc (go ps NoChange) (combineInfos ps)
where
- go [] rs = return rs
+ go [] rs = return rs
go (l:ls) rs = do
r <- ensureProperty l
case r of