From 39914aa7edf5ed7a0550ceab06ecc6fd68a27cb8 Mon Sep 17 00:00:00 2001 From: yiksanchan Date: Thu, 7 May 2020 13:11:10 -0700 Subject: [PATCH] Improve grammar (#29040) --- akka-docs/src/main/paradox/typed/distributed-data.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-docs/src/main/paradox/typed/distributed-data.md b/akka-docs/src/main/paradox/typed/distributed-data.md index b3cd403c81..510c6f0e0e 100644 --- a/akka-docs/src/main/paradox/typed/distributed-data.md +++ b/akka-docs/src/main/paradox/typed/distributed-data.md @@ -270,8 +270,8 @@ better safety for small clusters. #### Consistency and response types When using `ReadLocal`, you will never receive a `GetFailure` response, since the local replica is always available to -local readers. `WriteLocal` however may still reply with `UpdateFailure` messages, in the event that the `modify` function -threw an exception, or, if using @ref:[durable storage](#durable-storage), if storing failed. +local readers. `WriteLocal` however may still reply with `UpdateFailure` messages if the `modify` function +throws an exception, or if it fails to persist to @ref:[durable storage](#durable-storage). #### Examples