diff options
| -rw-r--r-- | src/Propellor/Property.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Propellor/Property.hs b/src/Propellor/Property.hs index 706e684b..94c82c9f 100644 --- a/src/Propellor/Property.hs +++ b/src/Propellor/Property.hs @@ -357,6 +357,9 @@ makeChange a = liftIO a >> return MadeChange noChange :: Propellor Result noChange = return NoChange +-- | A no-op property. +-- +-- This is the same as `mempty` from the `Monoid` instance. doNothing :: SingI t => Property (MetaTypes t) doNothing = mempty |
