Skip to content

Commit 5112ae8

Browse files
committed
change wording
1 parent da9023e commit 5112ae8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

commands/operator-sdk/cmd/print_deps.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ var asFile bool
2626
func NewPrintDepsCmd() *cobra.Command {
2727
printDepsCmd := &cobra.Command{
2828
Use: "print-deps",
29-
Short: "Print dependencies expected by the Operator SDK",
30-
Long: `The operator-sdk print-deps command prints all dependencies expected by this
31-
version of the Operator SDK. Versions for these dependencies should match those
32-
in an operators' Gopkg.toml file.
29+
Short: "Print Golang packages and versions required to run the operator",
30+
Long: `The operator-sdk print-deps command prints all Golang packages and versions expected
31+
by this version of the Operator SDK. Versions for these packages should match
32+
those in an operators' Gopkg.toml file.
3333
3434
print-deps prints in columnar format by default. Use the --as-file flag to
3535
print in Gopkg.toml file format.

doc/sdk-cli-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ operator-sdk completion bash
9090

9191
## print-deps
9292

93-
Prints the most recent dependencies and their versions known by the `operator-sdk` binary. Prints in columnar format by default.
93+
Prints the most recent Golang packages and versions required by operators. Prints in columnar format by default.
9494

9595
### Flags
9696

97-
* `--as-file` Print dependencies and versions in Gopkg.toml format.
97+
* `--as-file` Print packages and versions in Gopkg.toml format.
9898

9999
## generate
100100

0 commit comments

Comments
 (0)