diff options
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 |