aboutsummaryrefslogtreecommitdiff
path: root/commands/compose/edit.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/compose/edit.go')
-rw-r--r--commands/compose/edit.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/compose/edit.go b/commands/compose/edit.go
index e888350..e788022 100644
--- a/commands/compose/edit.go
+++ b/commands/compose/edit.go
@@ -12,15 +12,15 @@ func init() {
register(Edit{})
}
-func (_ Edit) Aliases() []string {
+func (Edit) Aliases() []string {
return []string{"edit"}
}
-func (_ Edit) Complete(aerc *widgets.Aerc, args []string) []string {
+func (Edit) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
-func (_ Edit) Execute(aerc *widgets.Aerc, args []string) error {
+func (Edit) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) != 1 {
return errors.New("Usage: edit")
}