summaryrefslogtreecommitdiff
path: root/src/Propellor/Property.hs
diff options
context:
space:
mode:
authorJoey Hess2017-01-05 20:32:56 -0400
committerJoey Hess2017-01-05 20:34:22 -0400
commitd1e5b88edaebd6a06d1745de893a273a1e6aba65 (patch)
treeccc3136399fb3090782262dfdd6f08288f8dba74 /src/Propellor/Property.hs
parent467f5f9959ab9ce13e9e6bf65e3a2bbe461a0984 (diff)
fix type in example
Diffstat (limited to 'src/Propellor/Property.hs')
-rw-r--r--src/Propellor/Property.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property.hs b/src/Propellor/Property.hs
index 8f51035b..06145333 100644
--- a/src/Propellor/Property.hs
+++ b/src/Propellor/Property.hs
@@ -263,7 +263,7 @@ isNewerThan x y = do
--
-- For example:
--
--- > upgraded :: UnixLike
+-- > upgraded :: Property (DebianLike + FreeBSD)
-- > upgraded = (Apt.upgraded `pickOS` Pkg.upgraded)
-- > `describe` "OS upgraded"
--