modify the doc to simple string, will update the doc later

This commit is contained in:
Jijie Wei
2020-06-19 16:35:57 -07:00
parent 25186e94af
commit 29cadfe8b0

View File

@@ -6,7 +6,6 @@ package commands
import (
"github.com/spf13/cobra"
"sigs.k8s.io/kustomize/cmd/config/ext"
"sigs.k8s.io/kustomize/cmd/config/internal/generateddocs/commands"
"sigs.k8s.io/kustomize/kyaml/openapi"
"sigs.k8s.io/kustomize/kyaml/setters2/settersutil"
)
@@ -17,9 +16,9 @@ func NewDeleteSetterRunner(parent string) *DeleteSetterRunner {
c := &cobra.Command{
Use: "delete-setter DIR NAME",
Args: cobra.MinimumNArgs(2),
Short: commands.SetShort,
Long: commands.SetLong,
Example: commands.SetExamples,
Short: "delete values on Resources fields.",
Long: "",
Example: "",
PreRunE: r.preRunE,
RunE: r.runE,
}