Reformat documentation messages

This commit is contained in:
Tom Wiesing 2022-12-08 11:45:52 +01:00
parent aefde6eec2
commit c80c8f2297
No known key found for this signature in database
29 changed files with 61 additions and 61 deletions

View file

@ -11,8 +11,8 @@ import (
var InstanceLock wisski_distillery.Command = instanceLock{}
type instanceLock struct {
Lock bool `short:"l" long:"lock" description:"Lock the provided WissKI instance"`
Unlock bool `short:"u" long:"unlock" description:"Unlock the provided WissKI instance"`
Lock bool `short:"l" long:"lock" description:"lock the provided instance"`
Unlock bool `short:"u" long:"unlock" description:"unlock the provided instance"`
Positionals struct {
Slug string `positional-arg-name:"SLUG" required:"1-1" description:"slug of instance to lock or unlock"`
} `positional-args:"true"`
@ -24,7 +24,7 @@ func (instanceLock) Description() wisski_distillery.Description {
NeedsDistillery: true,
},
Command: "instance_lock",
Description: "Locks or unlocks a WissKI instance",
Description: "locks or unlocks an instance",
}
}