Skip to content

Commit 34e3ad1

Browse files
committedFeb 26, 2016
Added defaults to config opts descriptions
License: MIT Signed-off-by: Richard Littauer <richard.littauer@gmail.com>
1 parent d48cd56 commit 34e3ad1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎core/commands/config.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ Set the value of the 'datastore.path' key:
5858
cmds.StringArg("value", false, false, "The value to set the config entry to."),
5959
},
6060
Options: []cmds.Option{
61-
cmds.BoolOption("bool", "Set a boolean value."),
62-
cmds.BoolOption("json", "Parse stringified JSON."),
61+
cmds.BoolOption("bool", "Set a boolean value. Default: false."),
62+
cmds.BoolOption("json", "Parse stringified JSON. Default: false."),
6363
},
6464
Run: func(req cmds.Request, res cmds.Response) {
6565
args := req.Arguments()

0 commit comments

Comments
 (0)
Please sign in to comment.