From 568e5087e1fb20014c89d15e1bd589de3bc2cc0a Mon Sep 17 00:00:00 2001 From: Richard Littauer Date: Tue, 15 Mar 2016 15:04:26 -0400 Subject: [PATCH] Edited object patch set-data doc License: MIT Signed-off-by: Richard Littauer --- core/commands/object/patch.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/commands/object/patch.go b/core/commands/object/patch.go index 1180463ed..b85a612b9 100644 --- a/core/commands/object/patch.go +++ b/core/commands/object/patch.go @@ -110,7 +110,7 @@ the limit will not be respected by the network. var patchSetDataCmd = &cmds.Command{ Helptext: cmds.HelpText{ - Tagline: "Set data field of an ipfs object.", + Tagline: "Set the data field of an ipfs object.", ShortDescription: ` Set the data of an ipfs object from stdin or with the contents of a file. @@ -121,7 +121,7 @@ Example: }, Arguments: []cmds.Argument{ cmds.StringArg("root", true, false, "The hash of the node to modify."), - cmds.FileArg("data", true, false, "Data fill with.").EnableStdin(), + cmds.FileArg("data", true, false, "The data to set the object to.").EnableStdin(), }, Run: func(req cmds.Request, res cmds.Response) { nd, err := req.InvocContext().GetNode()