Fix copy-paste comments

This commit is contained in:
Seth Vargo 2016-09-26 10:22:50 -05:00
parent 819d87918e
commit 738f12329a
No known key found for this signature in database
GPG Key ID: 905A90C2949E8787
3 changed files with 6 additions and 6 deletions

View File

@ -9,8 +9,8 @@ import (
"github.com/mitchellh/cli"
)
// KVDeleteCommand is a Command implementation that is used to setup
// a "watch" which uses a sub-process
// KVDeleteCommand is a Command implementation that is used to delete a key or
// prefix of keys from the key-value store.
type KVDeleteCommand struct {
Ui cli.Ui
}

View File

@ -12,8 +12,8 @@ import (
"github.com/mitchellh/cli"
)
// KVGetCommand is a Command implementation that is used to setup
// a "watch" which uses a sub-process
// KVGetCommand is a Command implementation that is used to fetch the value of
// a key from the key-value store.
type KVGetCommand struct {
Ui cli.Ui
}

View File

@ -13,8 +13,8 @@ import (
"github.com/mitchellh/cli"
)
// KVPutCommand is a Command implementation that is used to setup
// a "watch" which uses a sub-process
// KVPutCommand is a Command implementation that is used to write data to the
// key-value store.
type KVPutCommand struct {
Ui cli.Ui