From 065d0b2c06957325e86c305824ee7b58c08bb5de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Fri, 12 Mar 2021 13:39:42 +0100 Subject: [PATCH] cmd/flux/export_source*: fix typo in comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit fixes a small typo in the comments for the export source commands. Signed-off-by: Lucas Servén Marín --- cmd/flux/export_source_bucket.go | 2 +- cmd/flux/export_source_git.go | 2 +- cmd/flux/export_source_helm.go | 2 +- docs/cmd/flux_export_source_bucket.md | 2 +- docs/cmd/flux_export_source_git.md | 2 +- docs/cmd/flux_export_source_helm.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cmd/flux/export_source_bucket.go b/cmd/flux/export_source_bucket.go index 7aaa7e14..2e0e8cdc 100644 --- a/cmd/flux/export_source_bucket.go +++ b/cmd/flux/export_source_bucket.go @@ -34,7 +34,7 @@ import ( var exportSourceBucketCmd = &cobra.Command{ Use: "bucket [name]", Short: "Export Bucket sources in YAML format", - Long: "The export source git command exports on or all Bucket sources in YAML format.", + Long: "The export source git command exports one or all Bucket sources in YAML format.", Example: ` # Export all Bucket sources flux export source bucket --all > sources.yaml diff --git a/cmd/flux/export_source_git.go b/cmd/flux/export_source_git.go index 12d033d2..e8062fac 100644 --- a/cmd/flux/export_source_git.go +++ b/cmd/flux/export_source_git.go @@ -34,7 +34,7 @@ import ( var exportSourceGitCmd = &cobra.Command{ Use: "git [name]", Short: "Export GitRepository sources in YAML format", - Long: "The export source git command exports on or all GitRepository sources in YAML format.", + Long: "The export source git command exports one or all GitRepository sources in YAML format.", Example: ` # Export all GitRepository sources flux export source git --all > sources.yaml diff --git a/cmd/flux/export_source_helm.go b/cmd/flux/export_source_helm.go index d3de5305..e8e51f93 100644 --- a/cmd/flux/export_source_helm.go +++ b/cmd/flux/export_source_helm.go @@ -34,7 +34,7 @@ import ( var exportSourceHelmCmd = &cobra.Command{ Use: "helm [name]", Short: "Export HelmRepository sources in YAML format", - Long: "The export source git command exports on or all HelmRepository sources in YAML format.", + Long: "The export source git command exports one or all HelmRepository sources in YAML format.", Example: ` # Export all HelmRepository sources flux export source helm --all > sources.yaml diff --git a/docs/cmd/flux_export_source_bucket.md b/docs/cmd/flux_export_source_bucket.md index 7394f971..342207a1 100644 --- a/docs/cmd/flux_export_source_bucket.md +++ b/docs/cmd/flux_export_source_bucket.md @@ -4,7 +4,7 @@ Export Bucket sources in YAML format ### Synopsis -The export source git command exports on or all Bucket sources in YAML format. +The export source git command exports one or all Bucket sources in YAML format. ``` flux export source bucket [name] [flags] diff --git a/docs/cmd/flux_export_source_git.md b/docs/cmd/flux_export_source_git.md index a50f1b94..413a9399 100644 --- a/docs/cmd/flux_export_source_git.md +++ b/docs/cmd/flux_export_source_git.md @@ -4,7 +4,7 @@ Export GitRepository sources in YAML format ### Synopsis -The export source git command exports on or all GitRepository sources in YAML format. +The export source git command exports one or all GitRepository sources in YAML format. ``` flux export source git [name] [flags] diff --git a/docs/cmd/flux_export_source_helm.md b/docs/cmd/flux_export_source_helm.md index 3c33da82..ccc7a3d2 100644 --- a/docs/cmd/flux_export_source_helm.md +++ b/docs/cmd/flux_export_source_helm.md @@ -4,7 +4,7 @@ Export HelmRepository sources in YAML format ### Synopsis -The export source git command exports on or all HelmRepository sources in YAML format. +The export source git command exports one or all HelmRepository sources in YAML format. ``` flux export source helm [name] [flags]