aboutsummaryrefslogtreecommitdiffstats
path: root/commands/compose/multipart.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/compose/multipart.go')
-rw-r--r--commands/compose/multipart.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/compose/multipart.go b/commands/compose/multipart.go
index 87f4d030..34ab3af6 100644
--- a/commands/compose/multipart.go
+++ b/commands/compose/multipart.go
@@ -9,8 +9,8 @@ import (
)
type Multipart struct {
- Remove bool `opt:"-d"`
- Mime string `opt:"mime" metavar:"<mime/type>" complete:"CompleteMime"`
+ Remove bool `opt:"-d" desc:"Remove the specified mime/type."`
+ Mime string `opt:"mime" metavar:"<mime/type>" complete:"CompleteMime" desc:"MIME/type name."`
}
func init() {
@@ -18,7 +18,7 @@ func init() {
}
func (Multipart) Description() string {
- return "Convert the message to multipart with the given mime-type part."
+ return "Convert the message to multipart with the given mime/type part."
}
func (Multipart) Context() commands.CommandContext {