@cryptotaxi247 / kubo / commits / 568e5087e

Edited object patch set-data doc

License: MIT Signed-off-by: Richard Littauer <richard.littauer@gmail.com>

Richard Littauer committed Mar 15, 2016 at 15:04 UTC 568e5087e1fb20014c89d15e1bd589de3bc2cc0a
1 file changed +2 -2
core/commands/object/patch.go
+2 -2
@@ -110,7 +110,7 @@ the limit will not be respected by the network.
110
111 var patchSetDataCmd = &cmds.Command{
112 Helptext: cmds.HelpText{
113 - Tagline: "Set data field of an ipfs object.",
113 + Tagline: "Set the data field of an ipfs object.",
114 ShortDescription: `
115 Set the data of an ipfs object from stdin or with the contents of a file.
116
@@ -121,7 +121,7 @@ Example:
121 },
122 Arguments: []cmds.Argument{
123 cmds.StringArg("root", true, false, "The hash of the node to modify."),
124 - cmds.FileArg("data", true, false, "Data fill with.").EnableStdin(),
124 + cmds.FileArg("data", true, false, "The data to set the object to.").EnableStdin(),
125 },
126 Run: func(req cmds.Request, res cmds.Response) {
127 nd, err := req.InvocContext().GetNode()