Merge pull request #26631 from akka/paperLinks

Fix links to Delta State Replicated Data Types paper
This commit is contained in:
Patrik Nordwall 2019-04-01 11:08:26 +02:00 committed by GitHub
commit 8dfa215ded
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -52,7 +52,7 @@ trait ReplicatedData {
* receiving side, resulting in set {'a', 'b', 'c', 'd'}.
*
* Learn more about this in the paper
* <a href="paper http://arxiv.org/abs/1603.01529">Delta State Replicated Data Types</a>.
* <a href="http://arxiv.org/abs/1603.01529">Delta State Replicated Data Types</a>.
*/
trait DeltaReplicatedData extends ReplicatedData {

View file

@ -1061,8 +1061,8 @@ object Replicator {
* actor using the `Replicator.props`. If it is started as an ordinary actor it is important
* that it is given the same name, started on same path, on all nodes.
*
* <a href="paper http://arxiv.org/abs/1603.01529">Delta State Replicated Data Types</a>
* is supported. delta-CRDT is a way to reduce the need for sending the full state
* <a href="http://arxiv.org/abs/1603.01529">Delta State Replicated Data Types</a>
* are supported. delta-CRDT is a way to reduce the need for sending the full state
* for updates. For example adding element 'c' and 'd' to set {'a', 'b'} would
* result in sending the delta {'c', 'd'} and merge that with the state on the
* receiving side, resulting in set {'a', 'b', 'c', 'd'}.