Skip to content

Commit

Permalink
chore: remove misplaced dot
Browse files Browse the repository at this point in the history
  • Loading branch information
bschaatsbergen committed Jan 10, 2024
1 parent 6a4d758 commit 228e3a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/root.go
Expand Up @@ -25,10 +25,10 @@ var (
Short: "dnsee - check DNS configurations quickly",
Version: version,
PreRun: toggleDebug,
Example: "dnsee " + color.New(color.FgBlue).SprintFunc()("example.com") + "." +
"\n" + "dnsee " + color.New(color.FgBlue).SprintFunc()("example.com") + "." + " -q A" +
"\n" + "dnsee " + color.New(color.FgBlue).SprintFunc()("example.com") + "." + " --dns-server-ip 8.8.8.8" +
"\n" + "dnsee " + color.New(color.FgBlue).SprintFunc()("example.com") + "." + " --debug",
Example: "dnsee " + color.New(color.FgBlue).SprintFunc()("example.com") +
"\n" + "dnsee " + color.New(color.FgBlue).SprintFunc()("example.com") + " -q A" +
"\n" + "dnsee " + color.New(color.FgBlue).SprintFunc()("example.com") + " --dns-server-ip 8.8.8.8" +
"\n" + "dnsee " + color.New(color.FgBlue).SprintFunc()("example.com") + " --debug",
Run: func(cmd *cobra.Command, args []string) {
if len(args) != 1 {
fmt.Println("error: provide a domain name")
Expand Down

0 comments on commit 228e3a6

Please sign in to comment.