summaryrefslogtreecommitdiff
path: root/src/Propellor/Types/Container.hs
diff options
context:
space:
mode:
authorLeonardo Taglialegne2016-02-02 00:04:43 +0100
committerJoey Hess2016-02-02 12:01:06 -0400
commit3f4b12da7e1fd97417033ff0e4f4bd114d7fb11d (patch)
tree60ef0d1d54ae6bc7a579f234decd16e030646089 /src/Propellor/Types/Container.hs
parent151e0157cc22f362e7ec23a405a31343377c1234 (diff)
Fix (->-) signature in Propellor.Types.Container
Diffstat (limited to 'src/Propellor/Types/Container.hs')
-rw-r--r--src/Propellor/Types/Container.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Types/Container.hs b/src/Propellor/Types/Container.hs
index ecff5118..217d7df7 100644
--- a/src/Propellor/Types/Container.hs
+++ b/src/Propellor/Types/Container.hs
@@ -21,7 +21,7 @@ data Bound v = Bound
-- | Flipped version of -<- with the container value first and host value
-- second.
-(->-) :: (containerv ~ v, hostv ~ v) => hostv -> containerv -> Bound v
+(->-) :: (containerv ~ v, hostv ~ v) => containerv -> hostv -> Bound v
(->-) = flip (-<-)
-- | Create a Bound value, that is the same on both the host and container.