diff options
Diffstat (limited to 'Command/Ungroup.hs')
-rw-r--r-- | Command/Ungroup.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Command/Ungroup.hs b/Command/Ungroup.hs index b711a0132..cd2ebdf9b 100644 --- a/Command/Ungroup.hs +++ b/Command/Ungroup.hs @@ -16,10 +16,10 @@ import Types.Group import qualified Data.Set as S cmd :: Command -cmd = command "ungroup" (paramPair paramRemote paramDesc) seek - SectionSetup "remove a repository from a group" +cmd = command "ungroup" SectionSetup "remove a repository from a group" + (paramPair paramRemote paramDesc) (withParams seek) -seek :: CommandSeek +seek :: CmdParams -> CommandSeek seek = withWords start start :: [String] -> CommandStart |