summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoey Hess2015-12-05 19:05:34 -0400
committerJoey Hess2015-12-05 19:05:34 -0400
commit616c6c2e2c2c7dcafa9bc72c7c1bdea650e43e43 (patch)
tree563e4e18038f189421b1096f5472f07bbca55dae /src
parent42362a97afbd1e1a89390158a56c31214cca8789 (diff)
parent6e4f36e4ad4e1729ccf27ffd01fc8e2ea3a1534a (diff)
Merge branch 'joeyconfig'
Diffstat (limited to 'src')
-rw-r--r--src/Propellor/Types/ResultCheck.hs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Propellor/Types/ResultCheck.hs b/src/Propellor/Types/ResultCheck.hs
index 0c7597a2..09fbf73b 100644
--- a/src/Propellor/Types/ResultCheck.hs
+++ b/src/Propellor/Types/ResultCheck.hs
@@ -15,9 +15,10 @@ import Data.Monoid
import Control.Monad.IO.Class (liftIO)
-- | This is a `Property` but its `Result` is not accurate; in particular
--- it may return `NoChange` despite having made a change. However, when it
--- returns `MadeChange`, it really did made a change, and `FailedChange`
--- is still an error.
+-- it may return `NoChange` despite having made a change.
+--
+-- However, when it returns `MadeChange`, it really did make a change,
+-- and `FailedChange` is still an error.
data UncheckedProperty i = UncheckedProperty (Property i)
-- | Use to indicate that a Property is unchecked.