Weird use of brackets in README.md

This commit is contained in:
Luit van Drongelen 2013-07-31 09:45:16 +02:00
parent 1d5ab13e0b
commit 8a39167b88

View File

@ -52,9 +52,9 @@ In a nutshell, a groupcache lookup of **Get("foo")** looks like:
3. Amongst all the peers in my set of N, am I the owner of the key
"foo"? (e.g. does it consistent hash to 5?) If so, load it. If
other callers come in (via the same process or via RPC requests
other callers come in, via the same process or via RPC requests
from peers, they block waiting for the load to finish and get the
same answer). If not, RPC to the peer that's the owner and get
same answer. If not, RPC to the peer that's the owner and get
the answer. If the RPC fails, just load it locally (still with
local dup suppression).