Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Capitalized Merkle, added single quotes, periods #2299

Merged
merged 1 commit into from
Feb 16, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/commands/object/object.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,8 +307,8 @@ Examples:

echo '{ "Data": "abc" }' | ipfs object put

This creates a node with the data "abc" and no links. For an object with links,
create a file named node.json with the contents:
This creates a node with the data 'abc' and no links. For an object with links,
create a file named 'node.json' with the contents:

{
"Data": "another",
Expand Down
12 changes: 6 additions & 6 deletions core/commands/object/patch.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var ObjectPatchCmd = &cmds.Command{
ShortDescription: `
'ipfs object patch <root> <cmd> <args>' is a plumbing command used to
build custom DAG objects. It mutates objects, creating new objects as a
result. This is the merkle-dag version of modifying an object.
result. This is the Merkle-DAG version of modifying an object.
`,
},
Arguments: []cmds.Argument{},
Expand Down Expand Up @@ -51,7 +51,7 @@ Append data to what already exists in the data segment in the given object.
EXAMPLE:
$ echo "hello" | ipfs object patch $HASH append-data

note: this does not append data to a 'file', it modifies the actual raw
Note: This does not append data to a file - it modifies the actual raw
data within an object. Objects have a max size of 1MB and objects larger than
the limit will not be respected by the network.
`,
Expand Down Expand Up @@ -111,7 +111,7 @@ var patchSetDataCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Set data field of an ipfs object.",
ShortDescription: `
Set the data of an ipfs object from stdin or with the contents of a file
Set the data of an ipfs object from stdin or with the contents of a file.

EXAMPLE:

Expand Down Expand Up @@ -173,7 +173,7 @@ var patchRmLinkCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Remove a link from an object.",
ShortDescription: `
removes a link by the given name from root.
Removes a link by the given name from root.
`,
},
Arguments: []cmds.Argument{
Expand Down Expand Up @@ -233,15 +233,15 @@ var patchAddLinkCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Add a link to a given object.",
ShortDescription: `
Add a merkle-link to the given object and return the hash of the result.
Add a Merkle-link to the given object and return the hash of the result.

Examples:

EMPTY_DIR=$(ipfs object new unixfs-dir)
BAR=$(echo "bar" | ipfs add -q)
ipfs object patch $EMPTY_DIR add-link foo $BAR

This takes an empty directory, and adds a link named foo under it, pointing to
This takes an empty directory, and adds a link named 'foo' under it, pointing to
a file containing 'bar', and returns the hash of the new object.
`,
},
Expand Down