Skip to content

Commit

Permalink
chore: fix --help text
Browse files Browse the repository at this point in the history
#10412 changed to be partial match
but we forgot to update --help text
  • Loading branch information
lidel committed May 14, 2024
1 parent 8022e13 commit bde3a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/commands/pin/pin.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ Example:
cmds.BoolOption(pinQuietOptionName, "q", "Write just hashes of objects."),
cmds.BoolOption(pinStreamOptionName, "s", "Enable streaming of pins as they are discovered."),
cmds.BoolOption(pinNamesOptionName, "n", "Enable displaying pin names (slower)."),
cmds.StringOption(pinNameOptionName, "Display pins with names that contain the value provided (case-sensitive, exact match)."),
cmds.StringOption(pinNameOptionName, "Display pins with names that contain the value provided (case-sensitive, partial match)."),
},
Run: func(req *cmds.Request, res cmds.ResponseEmitter, env cmds.Environment) error {
api, err := cmdenv.GetApi(env, req)
Expand Down

0 comments on commit bde3a42

Please sign in to comment.