Skip to content
Open
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
2 changes: 1 addition & 1 deletion content/en/curriculum/libp2p/dht/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ To find a value for a given key, we iteratively find the _k_ closest nodes of a

![Distances from every peer to the key](libp2p-dht-distances.png)

Every peer has a parameter, _dist_, which represents the distance from the peer to the target key (`key1`). For example, `Peer 5` with `dist = 10` means that `distance(peer5, key1) = 5`.
Every peer has a parameter, _dist_, which represents the distance from the peer to the target key (`key1`). For example, `Peer 5` with `dist = 10` means that `distance(peer5, key1) = 10`.
The arrows represent the close nodes of every peer.
For simplicity, only one node (`Peer 10`) contains the key.

Expand Down