Skip to content

Commit

Permalink
Merge pull request #2665 from ipfs/feature/add-default-to-dns
Browse files Browse the repository at this point in the history
Added Default to `dns` cmd
  • Loading branch information
whyrusleeping committed May 13, 2016
2 parents f747cf6 + 1fa63c4 commit d3930e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/commands/dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The resolver can recursively resolve:
cmds.StringArg("domain-name", true, false, "The domain-name name to resolve.").EnableStdin(),
},
Options: []cmds.Option{
cmds.BoolOption("recursive", "r", "Resolve until the result is not a DNS link. Default: false."),
cmds.BoolOption("recursive", "r", "Resolve until the result is not a DNS link.").Default(false),
},
Run: func(req cmds.Request, res cmds.Response) {

Expand Down

0 comments on commit d3930e2

Please sign in to comment.