This repository was archived by the owner on Aug 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
A few minor fixes #23
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
8af9a7f
updates api/service markdown code to reflect source
hackergrrl ae9c81d
removes from exclamation marks from ipns examples (causes most shells…
hackergrrl cfae8ee
englishy nitpicks
hackergrrl 477161f
okay okay, exclamation points are back
hackergrrl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ are quite simple. | |
First, you'll need some content to publish: | ||
|
||
``` | ||
$ echo "Let's have some mutable fun!" | ipfs add | ||
$ echo 'Let\'s have some mutable fun!' | ipfs add | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. but i like exclamation points! |
||
``` | ||
|
||
note the hash that was output, and publish that hash out to the network: | ||
|
@@ -37,7 +37,7 @@ http://gateway.ipfs.io/ipns/<your peer ID> | |
So, now comes the fun part: Lets change things. | ||
|
||
``` | ||
$ echo "Look! Things have changed!" | ipfs add | ||
$ echo 'Look! Things have changed!' | ipfs add | ||
``` | ||
|
||
Next, take the hash from there and... | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!
wonder if we ought to try and make our examples work as tests somehow. (i like how go does it-- "examples" are just code that is runnable, and that godoc treats specially.) this is probably unrealistic for anything complicated though...