Skip to content

Commit

Permalink
chore: fix typos #151
Browse files Browse the repository at this point in the history
  • Loading branch information
srinandan committed Nov 15, 2023
1 parent 504f69a commit 1ccba87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/authconfigs/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func init() {
var name string

DelCmd.Flags().StringVarP(&name, "name", "n",
"", "Integration flow name")
"", "AuthConfig name")

_ = DelCmd.MarkFlagRequired("name")
}
2 changes: 1 addition & 1 deletion cmd/authconfigs/patch.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func init() {
PatchCmd.Flags().StringVarP(&authConfigFile, "file", "f",
"", "AuthConfig details JSON file path")
PatchCmd.Flags().StringArrayVarP(&updateMask, "update-mask", "",
nil, "Update mask: A list of comma separates values to update")
nil, "Update mask: A list of comma separated values to update")

_ = PatchCmd.MarkFlagRequired("updateMask")
}
2 changes: 1 addition & 1 deletion cmd/connectors/patch.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func init() {
PatchCmd.Flags().StringVarP(&connectionFile, "file", "f",
"", "Connection details JSON file path")
PatchCmd.Flags().StringArrayVarP(&updateMask, "update-mask", "",
nil, "Update mask: A list of comma separates values to update")
nil, "Update mask: A list of comma separated values to update")

_ = PatchCmd.MarkFlagRequired("updateMask")
}

0 comments on commit 1ccba87

Please sign in to comment.