summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoey Hess2016-02-02 12:03:18 -0400
committerJoey Hess2016-02-02 12:03:18 -0400
commit5b579d9c7ea193c5f721ff5aa6ec6729ee5524f7 (patch)
treea741ebb56f963f4990613cee243563dc516dc686 /src
parente6a14600e9626bc459376d5a6e2f6dc40d6298fd (diff)
parent3f4b12da7e1fd97417033ff0e4f4bd114d7fb11d (diff)
Merge branch 'joeyconfig'
Diffstat (limited to 'src')
-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.