diff options
author | Joris | 2016-03-19 11:58:38 +0100 |
---|---|---|
committer | Joris | 2016-03-19 11:58:38 +0100 |
commit | 3e5d3d47c90194403967e11994ea559b00b0f8ef (patch) | |
tree | 1a374a3668ce1760494c016d744e399f1b584173 /Data/ConfigManager.hs | |
parent | bf804f73ce3494be430054499c5ce18f232f68ca (diff) |
Update documentation
Diffstat (limited to 'Data/ConfigManager.hs')
-rw-r--r-- | Data/ConfigManager.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Data/ConfigManager.hs b/Data/ConfigManager.hs index bd62f40..00968f5 100644 --- a/Data/ConfigManager.hs +++ b/Data/ConfigManager.hs @@ -65,7 +65,7 @@ lookupDefault defaultValue name config = M.lookupDefault defaultValue name (hash -- $bindings -- --- A binding associates a name to a value. +-- A binding associates a name to a value: -- -- > number = 1 -- > my-string = "Hello" @@ -82,9 +82,9 @@ lookupDefault defaultValue name config = M.lookupDefault defaultValue name (hash -- > import "database.conf" -- > importMaybe "local.conf" --- $comment +-- $comments -- --- A comment begins with '#' and continues to the end of the line. +-- A comment begins with '#' and continues to the end of the line: -- -- > # Comment -- > x = 8 # Another comment |