aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/swarm
diff options
context:
space:
mode:
authorJavier Peletier <jm@epiclabs.io>2018-10-02 15:32:46 +0800
committerJavier Peletier <jm@epiclabs.io>2018-10-03 15:12:06 +0800
commit58c0879c2fbc9f88f35ba503674088da23a8a5a7 (patch)
tree64214db5b7e47a4b4677a4a487bdc9c83a063202 /cmd/swarm
parent68b8088cb9730bfe0ee2395dd5506dc744076fc2 (diff)
downloadgo-tangerine-58c0879c2fbc9f88f35ba503674088da23a8a5a7.tar
go-tangerine-58c0879c2fbc9f88f35ba503674088da23a8a5a7.tar.gz
go-tangerine-58c0879c2fbc9f88f35ba503674088da23a8a5a7.tar.bz2
go-tangerine-58c0879c2fbc9f88f35ba503674088da23a8a5a7.tar.lz
go-tangerine-58c0879c2fbc9f88f35ba503674088da23a8a5a7.tar.xz
go-tangerine-58c0879c2fbc9f88f35ba503674088da23a8a5a7.tar.zst
go-tangerine-58c0879c2fbc9f88f35ba503674088da23a8a5a7.zip
swarm/storage/feeds: removed capital Feed throughout
Diffstat (limited to 'cmd/swarm')
-rw-r--r--cmd/swarm/feeds.go2
-rw-r--r--cmd/swarm/feeds_test.go2
-rw-r--r--cmd/swarm/main.go8
3 files changed, 6 insertions, 6 deletions
diff --git a/cmd/swarm/feeds.go b/cmd/swarm/feeds.go
index b7b513556..4b34d6d95 100644
--- a/cmd/swarm/feeds.go
+++ b/cmd/swarm/feeds.go
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
-// Command feed allows the user to create and update signed Swarm Feeds
+// Command feed allows the user to create and update signed Swarm feeds
package main
import (
diff --git a/cmd/swarm/feeds_test.go b/cmd/swarm/feeds_test.go
index a403f8fe4..055d0ab4c 100644
--- a/cmd/swarm/feeds_test.go
+++ b/cmd/swarm/feeds_test.go
@@ -145,7 +145,7 @@ func TestCLIFeedUpdate(t *testing.T) {
t.Fatal(err)
}
- // make sure the retrieved Feed is the same
+ // make sure the retrieved feed is the same
if request.Feed != feed {
t.Fatalf("Expected feed to be: %s, got %s", feed, request.Feed)
}
diff --git a/cmd/swarm/main.go b/cmd/swarm/main.go
index 4c4dfceb7..cdc90a994 100644
--- a/cmd/swarm/main.go
+++ b/cmd/swarm/main.go
@@ -355,8 +355,8 @@ func init() {
Action: feedCreateManifest,
CustomHelpTemplate: helpTemplate,
Name: "create",
- Usage: "creates and publishes a new Feed manifest",
- Description: `creates and publishes a new Feed manifest pointing to a specified user's updates about a particular topic.
+ Usage: "creates and publishes a new feed manifest",
+ Description: `creates and publishes a new feed manifest pointing to a specified user's updates about a particular topic.
The feed topic can be built in the following ways:
* use --topic to set the topic to an arbitrary binary hex string.
* use --name to set the topic to a human-readable name.
@@ -392,8 +392,8 @@ func init() {
Action: feedInfo,
CustomHelpTemplate: helpTemplate,
Name: "info",
- Usage: "obtains information about an existing Swarm Feed",
- Description: `obtains information about an existing Swarm Feed
+ Usage: "obtains information about an existing Swarm feed",
+ Description: `obtains information about an existing Swarm feed
The topic can be specified directly with the --topic flag as an hex string
If no topic is specified, the default topic (zero) will be used
The --name flag can be used to specify subtopics with a specific name.