@@ -21,7 +21,7 @@ var ObjectPatchCmd = &cmds.Command{
21
21
ShortDescription : `
22
22
'ipfs object patch <root> <cmd> <args>' is a plumbing command used to
23
23
build custom DAG objects. It mutates objects, creating new objects as a
24
- result. This is the merkle-dag version of modifying an object.
24
+ result. This is the Merkle-DAG version of modifying an object.
25
25
` ,
26
26
},
27
27
Arguments : []cmds.Argument {},
@@ -51,7 +51,7 @@ Append data to what already exists in the data segment in the given object.
51
51
EXAMPLE:
52
52
$ echo "hello" | ipfs object patch $HASH append-data
53
53
54
- note: this does not append data to a ' file', it modifies the actual raw
54
+ Note: This does not append data to a file - it modifies the actual raw
55
55
data within an object. Objects have a max size of 1MB and objects larger than
56
56
the limit will not be respected by the network.
57
57
` ,
@@ -111,7 +111,7 @@ var patchSetDataCmd = &cmds.Command{
111
111
Helptext : cmds.HelpText {
112
112
Tagline : "Set data field of an ipfs object." ,
113
113
ShortDescription : `
114
- Set the data of an ipfs object from stdin or with the contents of a file
114
+ Set the data of an ipfs object from stdin or with the contents of a file.
115
115
116
116
EXAMPLE:
117
117
@@ -173,7 +173,7 @@ var patchRmLinkCmd = &cmds.Command{
173
173
Helptext : cmds.HelpText {
174
174
Tagline : "Remove a link from an object." ,
175
175
ShortDescription : `
176
- removes a link by the given name from root.
176
+ Removes a link by the given name from root.
177
177
` ,
178
178
},
179
179
Arguments : []cmds.Argument {
@@ -233,15 +233,15 @@ var patchAddLinkCmd = &cmds.Command{
233
233
Helptext : cmds.HelpText {
234
234
Tagline : "Add a link to a given object." ,
235
235
ShortDescription : `
236
- Add a merkle -link to the given object and return the hash of the result.
236
+ Add a Merkle -link to the given object and return the hash of the result.
237
237
238
238
Examples:
239
239
240
240
EMPTY_DIR=$(ipfs object new unixfs-dir)
241
241
BAR=$(echo "bar" | ipfs add -q)
242
242
ipfs object patch $EMPTY_DIR add-link foo $BAR
243
243
244
- This takes an empty directory, and adds a link named foo under it, pointing to
244
+ This takes an empty directory, and adds a link named ' foo' under it, pointing to
245
245
a file containing 'bar', and returns the hash of the new object.
246
246
` ,
247
247
},
0 commit comments