From c4e25463827f4fde42e1229829088fa88867d247 Mon Sep 17 00:00:00 2001 From: Luke Codewalker Date: Sat, 2 Mar 2024 16:36:39 +0100 Subject: [PATCH] docs: improve help wording --- cmd/root.go | 6 +++--- cmd/upgrade.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index 565436c6..61472836 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -16,17 +16,17 @@ The Helm Diff Plugin * Shows a diff explaining what a helm upgrade would change: This fetches the currently deployed version of a release and compares it to a local chart plus values. This can be - used visualize what changes a helm upgrade will perform. + used to visualize what changes a helm upgrade will perform. * Shows a diff explaining what had changed between two revisions: This fetches previously deployed versions of a release - and compares them. This can be used visualize what changes + and compares them. This can be used to visualize what changes were made during revision change. * Shows a diff explaining what a helm rollback would change: This fetches the currently deployed version of a release and compares it to the previously deployed version of the release, that you - want to rollback. This can be used visualize what changes a + want to rollback. This can be used to visualize what changes a helm rollback will perform. ` diff --git a/cmd/upgrade.go b/cmd/upgrade.go index 09b50ddd..cf52f835 100644 --- a/cmd/upgrade.go +++ b/cmd/upgrade.go @@ -109,7 +109,7 @@ const globalUsage = `Show a diff explaining what a helm upgrade would change. This fetches the currently deployed version of a release and compares it to a chart plus values. -This can be used visualize what changes a helm upgrade will +This can be used to visualize what changes a helm upgrade will perform. `