Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix a gofmt warning
Signed-off-by: Zou Yu <[email protected]>
  • Loading branch information
zouy414 committed May 7, 2021
commit 97d7ef2c727e1ebb14f483bcf5510893e080db98
4 changes: 2 additions & 2 deletions docs/book/utils/markerdocs/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,9 @@ func main() {
if err := plugin.Run(MarkerDocs{
Args: map[string][]string{
// marker args
"": []string{"-wwww", "crd", "webhook", "rbac:roleName=cheddar" /* role name doesn't mean anything here */, "object", "schemapatch:manifests=."},
"": {"-wwww", "crd", "webhook", "rbac:roleName=cheddar" /* role name doesn't mean anything here */, "object", "schemapatch:manifests=."},
// cli options args
"CLI: ": []string{"-hhhh"},
"CLI: ": {"-hhhh"},
},
}, os.Stdin, os.Stdout, os.Args[1:]...); err != nil {
log.Fatal(err.Error())
Expand Down