diff options
author | Javier Peletier <jm@epiclabs.io> | 2018-10-02 15:32:46 +0800 |
---|---|---|
committer | Javier Peletier <jm@epiclabs.io> | 2018-10-03 15:12:06 +0800 |
commit | 58c0879c2fbc9f88f35ba503674088da23a8a5a7 (patch) | |
tree | 64214db5b7e47a4b4677a4a487bdc9c83a063202 /swarm/api/http/server.go | |
parent | 68b8088cb9730bfe0ee2395dd5506dc744076fc2 (diff) | |
download | dexon-58c0879c2fbc9f88f35ba503674088da23a8a5a7.tar dexon-58c0879c2fbc9f88f35ba503674088da23a8a5a7.tar.gz dexon-58c0879c2fbc9f88f35ba503674088da23a8a5a7.tar.bz2 dexon-58c0879c2fbc9f88f35ba503674088da23a8a5a7.tar.lz dexon-58c0879c2fbc9f88f35ba503674088da23a8a5a7.tar.xz dexon-58c0879c2fbc9f88f35ba503674088da23a8a5a7.tar.zst dexon-58c0879c2fbc9f88f35ba503674088da23a8a5a7.zip |
swarm/storage/feeds: removed capital Feed throughout
Diffstat (limited to 'swarm/api/http/server.go')
-rw-r--r-- | swarm/api/http/server.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/swarm/api/http/server.go b/swarm/api/http/server.go index 84e06d09f..0cfeb1f22 100644 --- a/swarm/api/http/server.go +++ b/swarm/api/http/server.go @@ -518,7 +518,7 @@ func (s *Server) HandlePostFeed(w http.ResponseWriter, r *http.Request) { return } // the key to the manifest will be passed back to the client - // the client can access the Feed directly through its Feed member + // the client can access the feed directly through its Feed member // the manifest key can be set as content in the resolver of the ENS name outdata, err := json.Marshal(m) if err != nil { @@ -531,7 +531,7 @@ func (s *Server) HandlePostFeed(w http.ResponseWriter, r *http.Request) { } } -// HandleGetFeed retrieves Swarm Feeds updates: +// HandleGetFeed retrieves Swarm feeds updates: // bzz-feed://<manifest address or ENS name> - get latest feed update, given a manifest address // - or - // specify user + topic (optional), subtopic name (optional) directly, without manifest: |