From a9864d4edbdc970c42aadc36bccfce522785b333 Mon Sep 17 00:00:00 2001 From: Benjamin Wang Date: Fri, 2 Jun 2023 15:53:08 +0800 Subject: [PATCH] etcdctl: update the description for flag '--rev' Signed-off-by: Benjamin Wang --- etcdctl/ctlv3/command/ep_command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etcdctl/ctlv3/command/ep_command.go b/etcdctl/ctlv3/command/ep_command.go index 0964f564c69..1a9a529cc4c 100644 --- a/etcdctl/ctlv3/command/ep_command.go +++ b/etcdctl/ctlv3/command/ep_command.go @@ -76,7 +76,7 @@ func newEpHashKVCommand() *cobra.Command { Short: "Prints the KV history hash for each endpoint in --endpoints", Run: epHashKVCommandFunc, } - hc.PersistentFlags().Int64Var(&epHashKVRev, "rev", 0, "maximum revision to hash (default: all revisions)") + hc.PersistentFlags().Int64Var(&epHashKVRev, "rev", 0, "maximum revision to hash (default: latest revision)") return hc }