Skip to content

Commit

Permalink
all: refactor to use %q instead of "%s"
Browse files Browse the repository at this point in the history
  • Loading branch information
callthingsoff committed Jul 20, 2023
1 parent 66b215b commit 14744a5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion command.go
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ func (c *Command) ValidateRequiredFlags() error {
})

if len(missingFlagNames) > 0 {
return fmt.Errorf(`required flag(s) "%s" not set`, strings.Join(missingFlagNames, `", "`))
return fmt.Errorf(`required flag(s) %q not set`, strings.Join(missingFlagNames, `", "`))
}
return nil
}
Expand Down
2 changes: 1 addition & 1 deletion doc/man_docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func manPreamble(buf io.StringWriter, header *GenManHeader, cmd *cobra.Command,
description = cmd.Short
}

cobra.WriteStringAndCheck(buf, fmt.Sprintf(`%% "%s" "%s" "%s" "%s" "%s"
cobra.WriteStringAndCheck(buf, fmt.Sprintf(`%% %q %q %q %q %q
# NAME
`, header.Title, header.Section, header.date, header.Source, header.Manual))
cobra.WriteStringAndCheck(buf, fmt.Sprintf("%s \\- %s\n\n", dashedName, cmd.Short))
Expand Down
2 changes: 1 addition & 1 deletion site/content/docgen/md.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ The `filePrepender` will prepend the return value given the full filepath to the
```go
const fmTemplate = `---
date: %s
title: "%s"
title: %q
slug: %s
url: %s
---
Expand Down
2 changes: 1 addition & 1 deletion site/content/docgen/rest.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ The `filePrepender` will prepend the return value given the full filepath to the
```go
const fmTemplate = `---
date: %s
title: "%s"
title: %q
slug: %s
url: %s
---
Expand Down
2 changes: 1 addition & 1 deletion site/content/docgen/yaml.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The `filePrepender` will prepend the return value given the full filepath to the
```go
const fmTemplate = `---
date: %s
title: "%s"
title: %q
slug: %s
url: %s
---
Expand Down

0 comments on commit 14744a5

Please sign in to comment.