diff --git a/command/kv_delete.go b/command/kv_delete.go index 6857f1f209..197f62eaa2 100644 --- a/command/kv_delete.go +++ b/command/kv_delete.go @@ -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 } diff --git a/command/kv_get.go b/command/kv_get.go index 0358d7085f..1a54b37769 100644 --- a/command/kv_get.go +++ b/command/kv_get.go @@ -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 } diff --git a/command/kv_put.go b/command/kv_put.go index 363571c3d6..b6f4117377 100644 --- a/command/kv_put.go +++ b/command/kv_put.go @@ -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