From b9b0621977752af257b6dc3d22b2c6d32290886f Mon Sep 17 00:00:00 2001 From: Mitar Date: Fri, 22 Sep 2023 11:20:35 +0200 Subject: [PATCH] Fix descriptions of unencrypted-regex and encrypted-regex flags. Signed-off-by: Mitar --- cmd/sops/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/sops/main.go b/cmd/sops/main.go index 50ec203553..b902c186fd 100644 --- a/cmd/sops/main.go +++ b/cmd/sops/main.go @@ -678,11 +678,11 @@ func main() { }, cli.StringFlag{ Name: "unencrypted-regex", - Usage: "set the unencrypted key suffix. When specified, only keys matching the regex will be left unencrypted.", + Usage: "set the unencrypted key regex. When specified, only keys matching the regex will be left unencrypted.", }, cli.StringFlag{ Name: "encrypted-regex", - Usage: "set the encrypted key suffix. When specified, only keys matching the regex will be encrypted.", + Usage: "set the encrypted key regex. When specified, only keys matching the regex will be encrypted.", }, cli.StringFlag{ Name: "config",