diff options
author | Joey Hess <joey@kitenet.net> | 2014-02-19 14:55:34 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-02-19 14:55:34 -0400 |
commit | 57ab2130132c016790afe800a28c6fd88a5fca7b (patch) | |
tree | f275b1883e219953a6132ef9b6da54a2c3577b42 /Types | |
parent | ade0216bd08c2f9c1ed10c1c2274fd5b071c9c93 (diff) |
new section for metadata
Diffstat (limited to 'Types')
-rw-r--r-- | Types/Command.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Types/Command.hs b/Types/Command.hs index ecde75cae..0df7c82e6 100644 --- a/Types/Command.hs +++ b/Types/Command.hs @@ -66,6 +66,7 @@ data CommandSection | SectionSetup | SectionMaintenance | SectionQuery + | SectionMetaData | SectionUtility | SectionPlumbing deriving (Eq, Ord, Enum, Bounded) @@ -75,5 +76,6 @@ descSection SectionCommon = "Commonly used commands" descSection SectionSetup = "Repository setup commands" descSection SectionMaintenance = "Repository maintenance commands" descSection SectionQuery = "Query commands" +descSection SectionMetaData = "Metadata commands" descSection SectionUtility = "Utility commands" descSection SectionPlumbing = "Plumbing commands" |