Ver Fonte

Fix typo in dht.md (#345)

This PR fixes a minor typo in the DHT tutorial located at https://learning-at-home.readthedocs.io/en/latest/user/dht.html .
justheuristic há 4 anos atrás
pai
commit
f8d280e7b9
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      docs/user/dht.md

+ 1 - 1
docs/user/dht.md

@@ -18,7 +18,7 @@ dht2 = DHT(initial_peers=dht.get_visible_maddrs(), start=True)
 ```
 
 Note that `initial_peers` contains the address of the first DHT node.
-This implies that the resulting node will have shared key-value with the first node, __as well as any other
+This implies that the new node will share the key-value data with the first node, __as well as any other
 nodes connected to it.__ When the two nodes are connected, subsequent peers can use any one of them (or both)
 as `initial_peers` to connect to the shared "dictionary".