summaryrefslogtreecommitdiff
path: root/Propellor/Property.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Propellor/Property.hs')
-rw-r--r--Propellor/Property.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Propellor/Property.hs b/Propellor/Property.hs
index 10a51530..7419f352 100644
--- a/Propellor/Property.hs
+++ b/Propellor/Property.hs
@@ -80,5 +80,5 @@ props = []
-- | Adds a property to the list.
-- Can add both Properties and RevertableProperties.
(&) :: IsProp p => [Property] -> p -> [Property]
-ps & p = toProp p : ps
+ps & p = ps ++ [toProp p]
infixl 1 &