From c6a5861b6a9b5725a3fe7e610c3e69c940fb283e Mon Sep 17 00:00:00 2001 From: Michael Whittaker Date: Fri, 22 Jan 2021 16:36:45 -0800 Subject: [PATCH] More README typos. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1380bf8..f5c6c55 100644 --- a/README.md +++ b/README.md @@ -215,7 +215,7 @@ by contacting more than the bare minimum number of nodes. Formally, we say a read quorum (or write quorum) q is _f-resilient_ if despite the failure of any f nodes, q still forms a read quorum (or write quorum). A -strategy is f-resilient if it only selects f-resilient quorums. By default, we +strategy is f-resilient if it only selects f-resilient quorums. By default, `strategy` returns 0-resilient quorums. We can pass in the `f` argument to get more resilient strategies. @@ -263,7 +263,7 @@ crumbling_walls.capacity(read_fraction=distribution) # 6824 paths.capacity(read_fraction=distribution) # 5725 ``` -Maybe some time later, we've experience high latency because of stragglers and +Maybe some time later, we experiencing high latency because of stragglers and want to switch to a 1-resilient strategy. We again compute the loads, but now see that the simple majority quorum system has the highest load, so we switch from the crumbling walls quorum system to the simple majority quorum system.