From d2d29a80dccc7087e057022fe045a70bb04ac360 Mon Sep 17 00:00:00 2001 From: Brian Tiger Chow Date: Tue, 4 Nov 2014 02:57:34 -0800 Subject: [PATCH] docs(commands2/cat) help text --- core/commands2/cat.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/commands2/cat.go b/core/commands2/cat.go index f7378ed89..d3b0fdf0f 100644 --- a/core/commands2/cat.go +++ b/core/commands2/cat.go @@ -13,7 +13,11 @@ var catCmd = &cmds.Command{ Arguments: []cmds.Argument{ cmds.Argument{"object", cmds.ArgString, false, true}, }, - Help: "TODO", + Help: `ipfs cat - Show ipfs object data. + + Retrieves the object named by and displays the Data + it contains. + `, Run: func(res cmds.Response, req cmds.Request) { node := req.Context().Node paths := make([]string, 0, len(req.Arguments()))