From a50a06845a12ac3fa252a3e54ba18d3bf9f5fcad Mon Sep 17 00:00:00 2001 From: yiksanchan Date: Wed, 19 Jun 2019 23:18:09 -0700 Subject: [PATCH] Fix grammar (#27185) --- akka-docs/src/main/paradox/distributed-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/distributed-data.md b/akka-docs/src/main/paradox/distributed-data.md index da35215646..121e3ace42 100644 --- a/akka-docs/src/main/paradox/distributed-data.md +++ b/akka-docs/src/main/paradox/distributed-data.md @@ -28,7 +28,7 @@ All data entries are spread to all nodes, or nodes with a certain role, in the c via direct replication and gossip based dissemination. You have fine grained control of the consistency level for reads and writes. -The nature CRDTs makes it possible to perform updates from any node without coordination. +The nature of CRDTs makes it possible to perform updates from any node without coordination. Concurrent updates from different nodes will automatically be resolved by the monotonic merge function, which all data types must provide. The state changes always converge. Several useful data types for counters, sets, maps and registers are provided and