1
0
Fork 0
mirror of https://github.com/malob/prefmanager.git synced 2024-12-14 11:57:49 +00:00

Remove periods

This commit is contained in:
Malo Bourgon 2023-06-28 18:42:07 -07:00
parent eae1c9dc58
commit 4907b56b7d

View file

@ -26,32 +26,32 @@ commands = hsubparser
( watch . fromList <$> some ( watch . fromList <$> some
(DomainName <$> strArgument (DomainName <$> strArgument
( metavar "DOMAIN..." ( metavar "DOMAIN..."
<> help "Domain(s) that will be watched." <> help "Domain(s) that will be watched"
<> completer domainCompleter <> completer domainCompleter
) )
) )
<|> flag' (watch =<< domains) <|> flag' (watch =<< domains)
( long "all" ( long "all"
<> short 'a' <> short 'a'
<> help "Watch all domains including NSGlobalDomain." <> help "Watch all domains including NSGlobalDomain"
) )
) )
$ progDesc "Watch domain(s) for changes." $ progDesc "Watch domain(s) for changes"
) )
<> command "domains" <> command "domains"
(info (info
(pure printDomains) (pure printDomains)
(progDesc "List all domains.") (progDesc "List all domains")
) )
<> command "keys" <> command "keys"
(info (info
(printKeys . DomainName <$> strArgument (printKeys . DomainName <$> strArgument
( metavar "DOMAIN" ( metavar "DOMAIN"
<> help "A domain for which to list keys." <> help "A domain for which to list keys"
<> completer domainCompleter <> completer domainCompleter
) )
) )
$ progDesc "List the current keys in a domain." $ progDesc "List the current keys in a domain"
) )
) )
where where