diff --git a/README.md b/README.md index f1ad3e5..7e5de0d 100644 --- a/README.md +++ b/README.md @@ -124,8 +124,8 @@ Headamp Snapshot snapshot list List all snapshots. snapshot name Get or set the name of a snapshot. - snapshot save Save the current mixer state. - snapshot load Load a mixer state. + snapshot save Save the current mixer state to a snapshot. + snapshot load Load a mixer state from a snapshot. snapshot delete Delete a snapshot. Run "xair-cli --help" for more information on a command. diff --git a/snapshot.go b/snapshot.go index 932e4d1..e047637 100644 --- a/snapshot.go +++ b/snapshot.go @@ -7,8 +7,8 @@ type SnapshotCmdGroup struct { Index struct { Index int `arg:"" help:"The index of the snapshot."` Name NameCmd `help:"Get or set the name of a snapshot." cmd:"name"` - Save SaveCmd `help:"Save the current mixer state." cmd:"save"` - Load LoadCmd `help:"Load a mixer state." cmd:"load"` + Save SaveCmd `help:"Save the current mixer state to a snapshot." cmd:"save"` + Load LoadCmd `help:"Load a mixer state from a snapshot." cmd:"load"` Delete DeleteCmd `help:"Delete a snapshot." cmd:"delete"` } `help:"The index of the snapshot." arg:""` }