summaryrefslogtreecommitdiff
path: root/src/Propellor/Types
diff options
context:
space:
mode:
authorJoey Hess2017-02-26 16:54:55 -0400
committerJoey Hess2017-02-26 16:54:55 -0400
commitf6fe6cef2563467c97910f1b51e79442bfbcc362 (patch)
treea97ad3d24d20b0d35180eadd0b63f3f4a39773e8 /src/Propellor/Types
parentaa225472fb586486b5839e5362a555a476e9a45d (diff)
note
Diffstat (limited to 'src/Propellor/Types')
-rw-r--r--src/Propellor/Types/ConfigurableValue.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Propellor/Types/ConfigurableValue.hs b/src/Propellor/Types/ConfigurableValue.hs
index 6235bee9..1414be5f 100644
--- a/src/Propellor/Types/ConfigurableValue.hs
+++ b/src/Propellor/Types/ConfigurableValue.hs
@@ -18,6 +18,7 @@ import Data.Word
class ConfigurableValue t where
val :: t -> String
+-- | val String does not do any quoting, unlike show String
instance ConfigurableValue String where
val = id